using System.Collections.Generic; namespace TEAMModelOS.SDK.Models.Cosmos.BI { public class StaticValue { /// /// 活动类型 /// public static List activityTypes = new() { "Exam", "Survey", "Vote", "Homework" }; /// /// 分析接口时处理后缀 /// public static List suffixName = new() { ".js", ".css", ".ico", ".aspx", ".php", ".aws", ".html" }; /// /// 文件类型 cosmosDB /// public static List fileType = new() { "audio", "doc", "image", "other", "records", "res", "video"}; } }