13 lines
382 B
C#
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; }
|
|
|
|
} |