using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using CompanyManagment.App.Contracts.Workshop; namespace CompanyManagment.App.Contracts.LeftWorkInsurance; public class CreateLeftWorkInsurance { public string LeftWorkDate { get; set; } public string StartWorkDate { get; set; } [Required(ErrorMessage = "انتخاب کارگاه ضروری است")] public long WorkshopId { get; set; } public long EmployeeId { get; set; } public string EmployeeFullName { get; set; } public string WorkshopName { get; set; } public long JobId { get; set; } public bool IncludeStatus { get; set; } public List LeftWorkSearch{ get; set; } public List Workshops { get; set; } }