demo_trade/Data/RemoteData/Entity/User.cs

24 lines
539 B
C#
Raw Permalink Normal View History

2024-10-04 12:41:04 +00:00
using System;
using System.Collections.Generic;
namespace demo_trade.Data.RemoteData.Entity;
public partial class User
{
public int Userid { get; set; }
public string Usersurname { get; set; } = null!;
public string Username { get; set; } = null!;
public string Userpatronymic { get; set; } = null!;
public string Userlogin { get; set; } = null!;
public string Userpassword { get; set; } = null!;
public int Userrole { get; set; }
public virtual Role UserroleNavigation { get; set; } = null!;
}