using System; namespace Mirea.Api.Dto.Common; /// /// Represents a date or date range to skip during cron update scheduling. /// public class CronUpdateSkip { /// /// Gets or sets the start date of the skip range. /// public DateOnly? Start { get; set; } /// /// Gets or sets the end date of the skip range. /// public DateOnly? End { get; set; } /// /// Gets or sets a specific date to skip. /// public DateOnly? Date { get; set; } }