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

12 lines
305 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.Holiday;
public class CreateHoliday
{
public string Year { get; set; }
public long UserId { get; set; }
public List<string> PersiandatesList { get; set; }
public List<string> PersiandatesList2 { get; set; }
}