LibraryManagement / Database /Models /Membership.cs
Yuyuqt
feat: authorization
c596926
Raw
History Blame
477 Bytes
using System;
using System.Collections.Generic;
namespace Database.Models;
public partial class Membership
{
public int Id { get; set; }
public string Type { get; set; } = null!;
public int MaxBooks { get; set; }
public int BorrowingDays { get; set; }
public decimal Price { get; set; }
public int DurationMonths { get; set; }
public virtual ICollection<UserSubscription> UserSubscriptions { get; set; } = new List<UserSubscription>();
}