using System; using System.Collections.Generic; using Model.ResponseModel; public class FineStatus { public string issuingAuthorityCode { get; set; } public string districtName { get; set; } public string noticeNumber { get; set; } public DateTime offenceDate { get; set; } public string location { get; set; } public string idNumber { get; set; } public string vehicleRegistrationNumber { get; set; } public string phase { get; set; } public bool paymentAllowed { get; set; } public int paymentNotAllowedCode { get; set; } public DateTime? dueDate { get; set; } public double totalAmountDue { get; set; } public double contemptOfCourtAmount { get; set; } public string summonsNumber { get; set; } public string caseNumber { get; set; } public int courtCode { get; set; } public string courtName { get; set; } public DateTime? courtDate { get; set; } public string warrantOfArrestNumber { get; set; } public bool warrantOfArrestPending { get; set; } public List evidence { get; set; } public bool customerPaymentAllowed {get;set;} } public class IForceQueryFinesResponseStatus { public string transactionId { get; set; } public int resultCode { get; set; } public string resultDescription { get; set; } public List fines { get; set; } }