ExamConstant.cs 994 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace IES.ExamLibrary.Models
  5. {
  6. public class ExamConstant
  7. {
  8. public static readonly string ScopeTeacher = "teacher";
  9. public static readonly string ScopeStudent = "student";
  10. public static readonly string ScopeVisitor = "visitor";
  11. public static readonly string JwtSecretKey = "fXO6ko/qyXeYrkecPeKdgXnuLXf9vMEtnBC9OB3s+aA=";
  12. public static readonly string[] AZ_19NI1O0 = {
  13. "A", "B", "C", "D", "E", "F", "G", "H",
  14. "J", "K", "L", "M", "N", "P", "Q", "R",
  15. "S", "T", "U", "V", "W", "X", "Y", "Z",
  16. "2", "3", "4", "5", "6", "7", "8", "9"
  17. };
  18. public static readonly string[] AZ09 = {
  19. "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M",
  20. "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
  21. "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"
  22. };
  23. }
  24. }