using System.ComponentModel.DataAnnotations; namespace SPMS.Application.DTOs.Push; public class PushScheduleCancelRequestDto { [Required] public string ScheduleId { get; set; } = string.Empty; }