Constant.cs 562 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace HiTeachCE.Helpers
  6. {
  7. public class Constant
  8. {
  9. public static string az09 = "qwertyuiopasdfghjklzxcvbnm0123456789";
  10. public const string Role_WebAll = "WebAll";
  11. public const string Role_Root = "root";
  12. public const string Role_Admin = "admin";
  13. public const string Role_Lecturer = "lecturer";
  14. public const string Role_Learner = "learner";
  15. public const string Role_RootAdmin = "RootAdmin";
  16. }
  17. }