blagodatttt/Models/Staff.cs

24 lines
467 B
C#
Raw Permalink Normal View History

2025-02-05 10:47:39 +00:00
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; }
}