namespace Yi.Framework.AiHub.Application.Jobs;
///
/// 图片生成后台任务参数
///
public class ImageGenerationJobArgs
{
///
/// 图片任务ID
///
public Guid TaskId { get; set; }
///
/// 模型ID
///
public string ModelId { get; set; } = string.Empty;
///
/// 请求JSON字符串
///
public string RequestJson { get; set; } = string.Empty;
///
/// 用户ID
///
public Guid UserId { get; set; }
}