123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Models.Cosmos.Common.Inner
- {
- /// <summary>
- /// 补救资源
- /// </summary>
- public class Repair
- {
- /// <summary>
- /// 文件名字
- /// </summary>
- public string name { get; set; }
- /// <summary>
- /// 补救资源绝对地址
- /// </summary>
- public string[] blobUrl { get; set; }
- /// 文件类型
- /// </summary>
- public string[] type { get; set; }
- }
- }
|