17 lines
498 B
C#
17 lines
498 B
C#
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; }
|
|
//}
|
|
}
|