Yuyuqt
add: user balance
ee79726
Raw
History Blame Contribute Delete
1.2 kB
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>();
}