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

using System;
using Microsoft.Maui;
using Microsoft.Maui.Controls;
namespace GMCabsDriverAssistant.Models
{
public class CouponDto
{
public string Id { get; set; }
public string QrCodeBase64 { get; set; }
public ImageSource Image { get; set; }
public float Amount { get; set; }
public DateTime IssuedDate { get; set; }
public DateTime ExpiryDate { get; set; }
public string Status { get; set; }
public int IssuedLocationID { get; set; }
}
}