using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace TMTCronJob.Model { public class PayIForceInfringement { public bool freshFine { get; set; } public string issuingAuthorityCode { get; set; } public string noticeNumber { get; set; } public double paymentAmount { get; set; } public string paymentDate { get; set; } public string paymentProvider { get; set; } public int terminalId { get; set; } public string receiptNumber { get; set; } } }