namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Chat; /// /// 发布图片输入 /// public class PublishImageInput { /// /// 是否匿名 /// public bool IsAnonymous { get; set; } = false; /// /// 任务ID /// public Guid TaskId { get; set; } /// /// 分类标签 /// public List Categories { get; set; } = new(); }