Files
Backend-Api/CompanyManagment.App.Contracts/Fine/CreateFineViewModel.cs
2024-10-23 20:58:10 +03:30

14 lines
404 B
C#

using System.Collections.Generic;
using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.Fine;
public class CreateFineViewModel
{
public List<long> EmployeeIds { get; set; }
public long WorkshopId { get; set; }
public string Title { get; set; }
public string Amount { get; set; }
public IsActive IsActive { get; set; }
public string FineDate { get; set; }
}