using System; using System.Collections.Generic; using Model.ResponseModel; public class ENatisQueryInfrigerResponseStatusModel { public string infringementNoticeNumber { get; set; } public string IDNumber {get;set;} public DateTime date { get; set; } public string time { get; set; } public Location location { get; set; } public Vehicle vehicle { get; set; } public List charge { get; set; } public FeesList feesList { get; set; } public Payment payment { get; set; } public bool customerPaymentAllowed { get; set; } }