You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BasicUserDbo.cs 205B

1234567891011
  1. namespace iiie.Authentication.DBO
  2. {
  3. public class BasicUserDbo
  4. {
  5. public long Id { get; set; }
  6. public string Username { get; set; }
  7. public int Role { get; set; }
  8. }
  9. }