using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HotelPms.Share.Windows.Component { public class CalendarEventArgs : EventArgs { public DateTime DateValue { get; set; } public string DateText { get; set; } = string.Empty; public string Rokuyou { get; set; } = string.Empty; public string Holiday { get; set; } = string.Empty; public string MemoText { get; set; } = string.Empty; } }