19 lines
521 B
C#
19 lines
521 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|