using System; namespace GMCabsDriverAssistant.Models { public class CouponHistoryDto { public string Id { get; set; } public string QrCodeBase64 { get; set; } public float Amount { get; set; } public DateTime IssuedDate { get; set; } public DateTime? RedeemedDate { get; set; } public DateTime ExpiryDate { get; set; } public string CouponBackgroundColor { get; set; } public string CouponText { get; set; } public string IssuedLocation { get; set; } public string RedeemedLocation { get; set; } public bool isRedemed { get; set; } } }