using System.Collections.Generic; using System; namespace Model.ResponseModel { public class Evidence { public string evidenceToken { get; set; } public int evidenceTypeCode { get; set; } } public class Fine { 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 int 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 class IForceQueryFinesResponse { public string transactionId { get; set; } public int resultCode { get; set; } public string resultDescription { get; set; } public List fines { get; set; } } }