RootUser.cs 283 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EntranseTesting.Models;
  4. public partial class RootUser
  5. {
  6. public int Id { get; set; }
  7. public string? Name { get; set; }
  8. public string Login { get; set; } = null!;
  9. public string? Password { get; set; }
  10. }