LibraryManagement / Backend /Features /Subscriptions /SubscriptionUpgradePreviewDto.cs
Yuyuqt
add: user balance
ee79726
Raw
History Blame Contribute Delete
345 Bytes
namespace Backend.Features.Subscriptions
{
public class SubscriptionUpgradePreviewDto
{
public decimal OriginalPrice { get; set; }
public decimal DiscountAmount { get; set; }
public decimal FinalPrice { get; set; }
public string? Message { get; set; }
public bool CanUpgrade { get; set; }
}
}