22 lines
473 B
C#
Raw Normal View History

2023-05-04 12:05:13 +05:30
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; }
}
}