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