using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Mirea.Api.Dto.Responses.Configuration; /// /// Represents the response containing the cron update schedule and the next scheduled task dates. /// public class CronUpdateScheduleResponse { /// /// Gets or sets the cron expression representing the update schedule. /// [Required] public required string Cron { get; set; } /// /// Gets or sets the list of next scheduled task dates based on the cron expression. /// [Required] public required List NextStart { get; set; } }