25 lines
625 B
C#
25 lines
625 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>
|
||
/// 上传服务器本地文件
|
||
/// </summary>
|
||
public class UploadLocalFileAct
|
||
{
|
||
/// <summary>
|
||
/// 文件路径 如:E:/VSProjects/csharp-sdk/tools/files/test.jpg
|
||
/// </summary>
|
||
public string LocalFile { get; set; }
|
||
|
||
/// <summary>
|
||
/// 上传到七牛的文件名(非'/'开头) 如不填则由系统生成
|
||
/// </summary>
|
||
public string Key { get; set; }
|
||
}
|
||
}
|