19 lines
481 B
C#
19 lines
481 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UniversityModels.Enums;
|
|
using UniversityModels.Models;
|
|
|
|
namespace UniversityContracts.BindingModels
|
|
{
|
|
public class UserBindingModel : IUserModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Login { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public Role Role { get; set; }
|
|
}
|
|
}
|