namespace Model { public class InfringementPayment { public int InfringementID { get; set; } public int TransactionId { get; set; } public string NoticeNumber { get; set; } public string strStatus { get; set; } public double PaymentAmount { get; set; } public string PaymentDate { get; set; } public int PaymentProvider { get; set; } public string IssuingAuthority { get; set; } public int IntSettlementTries { get; set; } public string ReceiptNumber { get; set; } } }