feat(dal): Добавлен TemplateNameGeneratorService для генерации имени шаблонов по маске в Job

This commit is contained in:
Mikhail Kuznetsov
2025-06-18 09:58:23 +10:00
parent 38c9bb402e
commit 4b0ece1a2e
14 changed files with 4068 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
namespace PARR.BLL.Domain
{
public class TemplateNameConstantPart
{
public required string Name { get; set; }
public required string Value { get; set; }
}
}