Constant.cs 719 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.DI
  5. {
  6. public class Constant
  7. {
  8. public static readonly List<string> BlobPrefix = new List<string> { "exam", "vote", "survey", "item", "paper", "syllabus", "records", "doc", "image", "res", "video", "audio", "other", "thum", "train", "temp", "jyzx" };
  9. public static readonly List<string> ContentPrefix = new List<string> { "doc", "image", "res", "video", "audio", "other"};
  10. public static string TEAMModelOS = "TEAMModelOS";
  11. public static string ScopeTeacher = "teacher";
  12. public static string ScopeTmdUser = "tmduser";
  13. public static string ScopeStudent = "student";
  14. }
  15. }