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