using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 阿里云OSS上传结果
///
public class AliyunOSSUploadResult
{
///
/// 相对路径
///
public string Url { get; set; }
///
/// 字节
///
public byte[] Buffer { get; set; }
}
}