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