LibraryManagement / Frontend /Models /SubscriptionsViewModel.cs
sannlynnhtun-coding's picture
feat: implement authentication and authorization features, add book and user management controllers, and enhance UI for login and registration
b0a0ed0
Raw
History Blame
190 Bytes
using Frontend.Models.Dtos;
namespace Frontend.Models
{
public class SubscriptionsViewModel
{
public List<MembershipDto> AvailableMemberships { get; set; } = new();
}
}