22 lines
473 B
C#
22 lines
473 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using Microsoft.Maui;
|
|||
|
using Microsoft.Maui.Controls;
|
|||
|
|
|||
|
namespace GMCabsDriverAssistant.Models
|
|||
|
{
|
|||
|
public class RecentScannedCouponDto
|
|||
|
{
|
|||
|
public string Status { get; set; }
|
|||
|
|
|||
|
public DateTime ScannedTime { get; set; }
|
|||
|
|
|||
|
public string CouponBackgroundColor { get; set; }
|
|||
|
public string CouponTextColor { get; set; }
|
|||
|
|
|||
|
public ImageSource Image { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|