24 lines
467 B
C#
24 lines
467 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blagodat.Models;
|
|
|
|
public partial class Staff
|
|
{
|
|
public string IdStaff { get; set; } = null!;
|
|
|
|
public string? Post { get; set; }
|
|
|
|
public string? Fio { get; set; }
|
|
|
|
public string? Login { get; set; }
|
|
|
|
public string? Password { get; set; }
|
|
|
|
public DateOnly? LastLoginDate { get; set; }
|
|
|
|
public TimeOnly? LastLoginTime { get; set; }
|
|
|
|
public bool? TypeOfEntrance { get; set; }
|
|
}
|