feat(dal,core): Перенесены оставшиеся объекты из dal в core.

This commit is contained in:
Mikhail Trubnikov
2026-05-04 11:55:07 +10:00
parent 238244790b
commit a89605d02a
87 changed files with 276 additions and 174 deletions

View File

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