using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Bimface { /// /// 上传Policy相应类 /// public class UploadFilePolicyResponse { public string accessId { get; set; } public string callbackBody { get; set; } public long? expire { get; set; } public string host { get; set; } public string objectKey { get; set; } public string policy { get; set; } public string signature { get; set; } public string sourceId { get; set; } } }