2026-01-21 15:07:20 +00:00
|
|
|
using RealCV.Domain.Enums;
|
2026-01-21 12:03:24 +00:00
|
|
|
|
2026-01-21 15:07:20 +00:00
|
|
|
namespace RealCV.Application.DTOs;
|
2026-01-21 12:03:24 +00:00
|
|
|
|
|
|
|
|
public class SubscriptionInfoDto
|
|
|
|
|
{
|
|
|
|
|
public UserPlan Plan { get; set; }
|
|
|
|
|
public int ChecksUsedThisMonth { get; set; }
|
|
|
|
|
public int MonthlyLimit { get; set; }
|
|
|
|
|
public int ChecksRemaining { get; set; }
|
|
|
|
|
public bool IsUnlimited { get; set; }
|
|
|
|
|
public string? SubscriptionStatus { get; set; }
|
|
|
|
|
public DateTime? CurrentPeriodEnd { get; set; }
|
|
|
|
|
public bool HasActiveSubscription { get; set; }
|
|
|
|
|
public string DisplayPrice { get; set; } = string.Empty;
|
|
|
|
|
}
|