23 lines
562 B
C#
23 lines
562 B
C#
using CaseAccountingDataModels.Enum;
|
|
using CaseAccountingDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CaseAccountingContracts.ViewModels
|
|
{
|
|
public class UserViewModel : IUserModel
|
|
{
|
|
public int Id { get; set; }
|
|
[DisplayName("Логин")]
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public Role Role { get; set; }
|
|
}
|
|
}
|