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.
 

21 lines
473 B

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; }
}
}