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