User.cs 415 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication2.Models;
  4. public partial class User
  5. {
  6. public long Id { get; set; }
  7. public string? Fio { get; set; }
  8. public string? Login { get; set; }
  9. public byte[]? Password { get; set; }
  10. public long Role { get; set; }
  11. public byte[]? Image { get; set; }
  12. public virtual Role RoleNavigation { get; set; } = null!;
  13. }