feat(api): добавлено поле lastLogon в таблицы Users, Hosts

This commit is contained in:
Mikhail Trubnikov
2023-12-06 11:08:14 +10:00
parent 437b1a4e7c
commit 052312738e
10 changed files with 5825 additions and 0 deletions

View File

@@ -23,6 +23,8 @@ namespace PARR.DAL.Models
public string? Description { get; set; }
public DateTimeOffset? LastLogon { get; set; }
public ICollection<UsersInRole> Roles { get; set; } = new HashSet<UsersInRole>();
}