Files
Backend-Api/CompanyManagment.App.Contracts/InsuranceJob/CopyFromLastYearViewModel.cs
2025-05-18 21:06:18 +03:30

15 lines
429 B
C#

using System.Collections.Generic;
using CompanyManagment.App.Contracts.InsuranceJobItem;
using Microsoft.AspNetCore.Mvc.Rendering;
namespace CompanyManagment.App.Contracts.InsuranceJob;
public class CopyFromLastYearViewModel
{
public string StartDate { get; set; }
public string EndDate { get; set; }
public long InsuranceJobItemId { get; set; }
public SelectList InsuranceJobItemViewModels { get; set; }
}