using LibraryManagement.Shared.Models; using System.Collections.Generic; namespace Frontend.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(); } }