Files
Backend-Api/CompanyManagment.App.Contracts/FineSubject/CreateFineSubjectViewModel.cs

8 lines
212 B
C#

namespace CompanyManagment.App.Contracts.FineSubject;
public class CreateFineSubjectViewModel
{
public string Subject { get; set; }
public string Amount { get; set; }
public long WorkshopId { get; set; }
}