Files
2025-05-23 22:55:35 +03:30

14 lines
392 B
C#

using System;
namespace CompanyManagment.App.Contracts.DateSalary;
public class DateSalaryViewModel
{
public long Id { get; set; }
public string Year { get; set; }
public string Month { get; set; }
public string StartDateFa { get; set; }
public string EndDateFa { get; set; }
public DateTime StartDateGr { get; set; }
public DateTime EndDateGr { get; set; }
}