Files
2024-07-05 21:36:15 +03:30

12 lines
319 B
C#

using System;
namespace CompanyManagment.App.Contracts.HolidayItem;
public class HolidayItemViewModel
{
public long Id { get; set; }
public string Holidaydate { get; set; }
public DateTime HolidaydateGr { get; set; }
public long HolidayId { get; set; }
public string HolidayYear { get; set; }
}