using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace TMTCronJob.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 string PaymentProvider { get; set; } public string IssuingAuthority { get; set; } public int IntSettlementTries { get; set; } public string ReceiptNumber { get; set; } } }