18 lines
555 B
C#
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; }
|
|
} |