using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CompanyManagment.App.Contracts.ClientDashboard { public class CalenderViewModel { public string DayOfWeek { get; set; } public string DayNumber { get; set; } public bool IsToday { get; set; } public bool Holiday { get; set; } } }