15 lines
429 B
C#
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; }
|
|
} |