Spaces:
Sleeping
Sleeping
Yuyuqt
add: books, borrowings, home, login, membership, register, reward, userinsights, wishlist, themes
6f32ae8 | using LibraryManagement.Shared.Models; | |
| using System.Collections.Generic; | |
| namespace Frontend.Models | |
| { | |
| public class MemberDetailsViewModel | |
| { | |
| public UserDto User { get; set; } = new(); | |
| public SubscriptionDto? CurrentSubscription { get; set; } | |
| public List<MembershipDto> AvailableMemberships { get; set; } = new(); | |
| } | |
| } | |