using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.DI { public class Constant { public static readonly List BlobPrefix = new List { "exam", "vote", "survey", "item", "paper", "syllabus", "records", "doc", "image", "res", "video", "audio", "other", "thum", "train", "temp", "jyzx" }; public static readonly List ContentPrefix = new List { "doc", "image", "res", "video", "audio", "other"}; public static string TEAMModelOS = "TEAMModelOS"; public static string ScopeTeacher = "teacher"; public static string ScopeTmdUser = "tmduser"; public static string ScopeStudent = "student"; } }