8 lines
225 B
C#
8 lines
225 B
C#
namespace CompanyManagment.App.Contracts.HolidayItem;
|
|
|
|
public class HolidayItemSearchModel
|
|
{
|
|
public string Holidaydate { get; set; }
|
|
public long HolidayId { get; set; }
|
|
public string HolidayYear { get; set; }
|
|
} |