using System; using System.ComponentModel.DataAnnotations; namespace Mirea.Api.Dto.Common; /// /// Represents a pair of time periods. /// public class PairPeriodTime { /// /// Gets or sets the start time of the period. /// [Required] public TimeOnly Start { get; set; } /// /// Gets or sets the end time of the period. /// [Required] public TimeOnly End { get; set; } }