StaticValue.cs 694 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. namespace TEAMModelOS.SDK.Models.Cosmos.BI
  3. {
  4. public class StaticValue
  5. {
  6. /// <summary>
  7. /// 活动类型
  8. /// </summary>
  9. public static List<string> activityTypes = new() { "Exam", "Survey", "Vote", "Homework" };
  10. /// <summary>
  11. /// 分析接口时处理后缀
  12. /// </summary>
  13. public static List<string> suffixName = new() { ".js", ".css", ".ico", ".aspx", ".php", ".aws", ".html" };
  14. /// <summary>
  15. /// 文件类型 cosmosDB
  16. /// </summary>
  17. public static List<string> fileType = new() { "audio", "doc", "image", "other", "records", "res", "video"};
  18. }
  19. }