選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

UserRoles.cs 116B

12345678
  1. namespace Authentication_test.DBO
  2. {
  3. public enum UserRoles
  4. {
  5. Root = 1,
  6. NotRoot = 2
  7. }
  8. }