You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
640 B

1 year ago
  1. using System;
  2. namespace GMCabsDriverAssistant.Models
  3. {
  4. public class CouponHistoryDto
  5. {
  6. public string Id { get; set; }
  7. public string QrCodeBase64 { get; set; }
  8. public float Amount { get; set; }
  9. public DateTime IssuedDate { get; set; }
  10. public DateTime? RedeemedDate { get; set; }
  11. public DateTime ExpiryDate { get; set; }
  12. public string CouponBackgroundColor { get; set; }
  13. public string CouponText { get; set; }
  14. public string IssuedLocation { get; set; }
  15. public string RedeemedLocation { get; set; }
  16. public bool isRedemed { get; set; }
  17. }
  18. }