12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.DI
- {
- public class Constant
- {
- 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" };
- public static readonly List<string> ContentPrefix = new List<string> { "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";
- }
- }
|