ZhiYi/ZhiYi.Core.Application/Dtos/Shared/SharedDeleteDto.cs

14 lines
292 B
C#

namespace ZhiYi.Core.Application.Dtos.Shared
{
/// <summary>
/// 分享码删除定义
/// </summary>
public class SharedDeleteDto
{
/// <summary>
/// 分享码列表
/// </summary>
public IEnumerable<string> Codes { get; set; }
}
}