25 lines
651 B
C#
25 lines
651 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace MyCode.Project.Domain.Message.Act.Qiniu
|
||
{
|
||
/// <summary>
|
||
/// 上传URL远端文件到存储空间
|
||
/// </summary>
|
||
public class UploadRemoteFileAct
|
||
{
|
||
/// <summary>
|
||
/// 文件URL 如:http://cdn.loonxierp.com/file/file2017112310144205811468282914.jpg
|
||
/// </summary>
|
||
public string FileUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 上传到七牛的文件名(非'/'开头) 如不填则由系统生成
|
||
/// </summary>
|
||
public string Key { get; set; }
|
||
}
|
||
}
|