File size: 477 Bytes
c596926
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>();
}