User.cs 430 B

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