using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Persistence.Models; /// /// Диапазон дат /// public class DatesRangeDto { /// /// Дата начала диапазона /// public DateTimeOffset From { get; set; } /// /// Дата окончания диапазона /// public DateTimeOffset To { get; set; } }