123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication2.Models;
- public partial class User
- {
- public long Id { get; set; }
- public string? Fio { get; set; }
- public string? Login { get; set; }
- public byte[]? Password { get; set; }
- public long Role { get; set; }
- public byte[]? Image { get; set; }
- public virtual Role RoleNavigation { get; set; } = null!;
- }
|