feat(dal): добавлен Shortcode "%СВЯЗИ-ПН%", добавлен метод GetAvailableShortcodesAsync для отображения доступных изменямеых частей в API

This commit is contained in:
Mikhail Kuznetsov
2025-12-10 11:55:58 +10:00
parent 2f07ccd67c
commit 3a136f5bf4
12 changed files with 294 additions and 53 deletions

View File

@@ -0,0 +1,15 @@
using PARR.Constants;
namespace PARR.API.Contracts.V1.Responses
{
public class ShortcodeResponse : ShortcodeBaseResponse
{
}
public class ShortcodeBaseResponse
{
public required string Shortcode { get; set; }
public required string Description { get; set; }
public required ShortcodeTypeEnum Type { get; set; }
}
}