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

13 lines
400 B
C#

namespace CompanyManagment.App.Contracts.MasterPenaltyTitle;
public class CreateMasterPenaltyTitle
{
public string FromDate { get; set; }
public string ToDate { get; set; }
public string Title { get; set; }
public string Day { get; set; }
public long MasterPetition_Id { get; set; }
public string PaidAmount { get; set; }
public string RemainingAmount { get; set; }
}