24 lines
518 B
C#
24 lines
518 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Demo3.Models;
|
|||
|
|
|||
|
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!;
|
|||
|
}
|