first commit
This commit is contained in:
commit
1530450313
165 changed files with 8443 additions and 0 deletions
18
src/AuthApp/Models/User.cs
Normal file
18
src/AuthApp/Models/User.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
namespace AuthApp.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Модель пользователя системы.
|
||||
/// </summary>
|
||||
public class User
|
||||
{
|
||||
/// <summary>
|
||||
/// Логин пользователя.
|
||||
/// </summary>
|
||||
public string Login { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Хэш пароля пользователя.
|
||||
/// </summary>
|
||||
public string PasswordHash { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue