using System; using System.Collections.Generic; #nullable disable namespace Teso_API.Models { public partial class CouponRedemption { public string CouponId { get; set; } public double? Discount { get; set; } public decimal? Worth { get; set; } public string UserGuid { get; set; } public string CountId { get; set; } public DateTime? Timestamp { get; set; } } }