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

14 lines
292 B
C#
Raw Normal View History

2025-02-21 01:14:39 +00:00
namespace ZhiYi.Core.Application.Dtos.Shared
{
/// <summary>
/// 分享码删除定义
/// </summary>
public class SharedDeleteDto
{
/// <summary>
/// 分享码列表
/// </summary>
public IEnumerable<string> Codes { get; set; }
}
}