namespace Yw.BIMFace
{
///
/// 发起文件转化的请求数据类
///
[Serializable]
public class TranslateFileRequest
{
///
///
///
public TranslateFileRequest()
{
this.CallBack = null;
this.Priority = 2;
this.Source = new TranslateSource();
}
///
/// Callback地址,待转换完毕以后,BIMFace会回调该地址
///
[JsonProperty("callback")]
public string CallBack { get; set; }
///
/// 优先级,数字越大,优先级越低。只能是1, 2, 3。默认为2
///
[JsonProperty("priority")]
public int Priority { get; set; }
///
///
///
[JsonProperty("source")]
public TranslateSource Source { get; set; }
}
}