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.

18 lines
521 B

1 year ago
  1. using System;
  2. using Microsoft.Maui;
  3. using Microsoft.Maui.Controls;
  4. namespace GMCabsDriverAssistant.Models
  5. {
  6. public class CouponDto
  7. {
  8. public string Id { get; set; }
  9. public string QrCodeBase64 { get; set; }
  10. public ImageSource Image { get; set; }
  11. public float Amount { get; set; }
  12. public DateTime IssuedDate { get; set; }
  13. public DateTime ExpiryDate { get; set; }
  14. public string Status { get; set; }
  15. public int IssuedLocationID { get; set; }
  16. }
  17. }