Spaces:
Sleeping
Sleeping
File size: 523 Bytes
da13799 c596926 da13799 c596926 da13799 25f925e c596926 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | using System;
using System.Collections.Generic;
namespace DbConnect.Entities;
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 string? RewardId { get; set; }
public virtual ICollection<UserSubscription> UserSubscriptions { get; set; } = new List<UserSubscription>();
}
|