Files
2024-07-05 21:36:15 +03:30

13 lines
382 B
C#

namespace CompanyManagment.App.Contracts.PenaltyTitle;
public class CreatePenaltyTitle
{
public string FromDate { get; set; }
public string ToDate { get; set; }
public string Title { get; set; }
public string Day { get; set; }
public long Petition_Id { get; set; }
public string PaidAmount { get; set; }
public string RemainingAmount { get; set; }
}