12 lines
319 B
C#
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; }
|
|
} |