using System.Collections.Generic; using _0_Framework.Application; namespace CompanyManagment.App.Contracts.Fine; public class CreateFineViewModel { public List 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; } }