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.
 

19 lines
640 B

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