using LibraryManagement.Shared.Models; using System.Collections.Generic; namespace BlazorFrontend.Models { public class MembershipViewModel { public SubscriptionDto? CurrentSubscription { get; set; } public List AvailableMemberships { get; set; } = new List(); public List QueuedMemberships { get; set; } = new List(); public LoyaltyAccountDto? LoyaltyAccount { get; set; } public Dictionary RewardPointCosts { get; set; } = new Dictionary(); public decimal WalletBalance { get; set; } } }