Spaces:
Sleeping
Sleeping
feat: implement authentication and authorization features, add book and user management controllers, and enhance UI for login and registration
b0a0ed0 | using Frontend.Models.Dtos; | |
| 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(); | |
| } | |
| } | |