feat: 完成匿名字段功能

This commit is contained in:
ccnetcore
2026-01-03 16:17:57 +08:00
parent 12878ba022
commit 3892ff1937
4 changed files with 42 additions and 19 deletions

View File

@@ -18,19 +18,9 @@ public class ImageTaskOutput
public string Prompt { get; set; } = string.Empty;
/// <summary>
/// 参考图PrefixBase64列表带前缀
/// 是否匿名
/// </summary>
// public List<string>? ReferenceImagesPrefixBase64 { get; set; }
/// <summary>
/// 参考图URL列表
/// </summary>
// public List<string>? ReferenceImagesUrl { get; set; }
/// <summary>
/// 生成图片PrefixBase64包含前缀
/// </summary>
// public string? StorePrefixBase64 { get; set; }
public bool IsAnonymous { get; set; }
/// <summary>
/// 生成图片URL
@@ -70,5 +60,5 @@ public class ImageTaskOutput
/// <summary>
/// 用户名称Id
/// </summary>
public Guid UserId { get; set; }
public Guid? UserId { get; set; }
}