123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication4.Models;
- public partial class User
- {
- public int Id { get; set; }
- public string FullName { get; set; } = null!;
- public string Username { get; set; } = null!;
- public byte[] Password { get; set; } = null!;
- public int? RoleId { get; set; }
- public byte[]? Image { get; set; }
- public virtual Role? Role { get; set; }
- }
|