Files
Backend-Api/CompanyManagment.App.Contracts/Insurance/InsuranceSearchModel.cs
2024-07-05 21:36:15 +03:30

18 lines
555 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.Insurance;
public class InsuranceSearchModel
{
public int Year { get; set; }
public int Month { get; set; }
public string EmployerStr { get; set; } //نام کارفرما
public string WorkShopStr { get; set; } //نام کارگاه
public long WorkShopId { get; set; } //Id کارگاه
public string Address { get; set; }
public string ListNumber { get; set; }
}