feat(distributor): реализована логика распределения всех шаблонов в методе DistributeTemplatesAsync

This commit is contained in:
Mikhail Trubnikov
2025-12-25 12:07:53 +10:00
parent a7a82b902a
commit 6a8f90c860
7 changed files with 860 additions and 243 deletions

View File

@@ -0,0 +1,14 @@
namespace PARR.DAL.NextRunServices.Models
{
/// <summary>
/// Модель, результат распределения шаблона
/// </summary>
public class TemplateNextRunResultDto
{
public Guid Id { get; set; }
public DateTimeOffset NextRun { get; set; }
public DateTimeOffset? NextRunOld { get; set; }
}
}