Files
Backend-Api/CompanyManagment.App.Contracts/ClientDashboard/CalenderViewModel.cs
2024-07-05 21:36:15 +03:30

18 lines
411 B
C#

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; }
}
}