24 lines
493 B
C#
24 lines
493 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace blagodat.Models;
|
|
|
|
public partial class Employe
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Fio { get; set; } = null!;
|
|
|
|
public string Login { get; set; } = null!;
|
|
|
|
public string Password { get; set; } = null!;
|
|
|
|
public string LastEntry { get; set; } = null!;
|
|
|
|
public string InputType { get; set; } = null!;
|
|
|
|
public int? Function { get; set; }
|
|
|
|
public virtual Role? FunctionNavigation { get; set; }
|
|
}
|