namespace FrontOffice.Main.Utilities;
///
/// DTO for Club Membership information
///
public class ClubMembershipDto
{
public long UserId { get; set; }
public bool IsActive { get; set; }
public string Status { get; set; } = string.Empty;
public int? DaysRemaining { get; set; }
}
///
/// DTO for Club Membership activation response
///
public class ClubActivationResponseDto
{
public bool Success { get; set; }
public string? Message { get; set; }
public DateTime? ActivationDate { get; set; }
public long AmountPaid { get; set; }
}