123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace HiTeachCE.Helpers
- {
- public class Constant
- {
- public static string az09 = "qwertyuiopasdfghjklzxcvbnm0123456789";
- public const string Role_WebAll = "WebAll";
- public const string Role_Root = "root";
- public const string Role_Admin = "admin";
- public const string Role_Lecturer = "lecturer";
- public const string Role_Learner = "learner";
- public const string Role_RootAdmin = "RootAdmin";
- }
- }
|