20 lines
640 B
C#
Raw Normal View History

2023-05-04 12:05:13 +05:30
using System;
namespace GMCabsDriverAssistant.Models
{
public class CouponHistoryDto
{
public string Id { get; set; }
public string QrCodeBase64 { get; set; }
public float Amount { get; set; }
public DateTime IssuedDate { get; set; }
public DateTime? RedeemedDate { get; set; }
public DateTime ExpiryDate { get; set; }
public string CouponBackgroundColor { get; set; }
public string CouponText { get; set; }
public string IssuedLocation { get; set; }
public string RedeemedLocation { get; set; }
public bool isRedemed { get; set; }
}
}