using System; using System.ComponentModel.DataAnnotations; namespace AsbCloudApp.Data { /// /// Диапазон дат /// public class DatesRangeDto { /// /// Дата начала диапазона /// [Required] public DateTime From { get; set; } /// /// Дата окончания диапазона /// [Required] public DateTime To { get; set; } } }