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 readonly string TEAMModelOS = "TEAMModelOS"; public static readonly string ScopeTeacher = "teacher"; public static readonly string ScopeTmdUser = "tmduser"; public static readonly string ScopeStudent = "student"; public static readonly string RowKey = "RowKey"; public static readonly string PartitionKey = "PartitionKey"; public static readonly string School = "School"; public static readonly string Normal = "Normal"; public static readonly string Common = "Common"; public static readonly string Teacher = "Teacher"; public static readonly string Student = "Student"; public static readonly int private_lesson_limit =30; public static readonly int private_lesson_expire = 7; } }