Spaces:
Sleeping
Sleeping
File size: 1,204 Bytes
ee79726 c596926 da13799 c596926 da13799 c596926 ccc2569 ee79726 ccc2569 c596926 1e653a4 c596926 1e653a4 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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | using System;
using System.Collections.Generic;
namespace DbConnect.Entities;
public partial class User
{
public Guid Id { get; set; }
public string FullName { get; set; } = null!;
public string Email { get; set; } = null!;
public string PasswordHash { get; set; } = null!;
public string? PhoneNumber { get; set; }
public string Role { get; set; } = null!;
public bool IsActive { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public string? StudentId { get; set; }
public bool? BanStatus { get; set; }
public DateTime? SuspensionEndDate { get; set; }
public string? Address { get; set; }
public string? FcmToken { get; set; }
public decimal Balance { get; set; }
public virtual ICollection<Borrowing> Borrowings { get; set; } = new List<Borrowing>();
public virtual ICollection<Notification> Notifications { get; set; } = new List<Notification>();
public virtual ICollection<UserSubscription> UserSubscriptions { get; set; } = new List<UserSubscription>();
public virtual ICollection<WishlistItem> WishlistItems { get; set; } = new List<WishlistItem>();
}
|