2025-04-24 18:31:27 +08:00

33 lines
661 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 UploadBatchRemoteFileAct
{
/// <summary>
/// 一组图片
/// </summary>
public List<string> ListImgUrl
{
get;
set;
}
/// <summary>
/// 域名如果存在则需要拼凑ListImgUrl里面
/// </summary>
public string Domain
{
get;
set;
}
}
}