版本260406

This commit is contained in:
2026-04-06 22:04:05 +08:00
parent 7dc5e73af7
commit 0b150470be
216 changed files with 98993 additions and 33 deletions

View File

@@ -0,0 +1,37 @@
namespace OrpaonVision.Core.Training.Contracts.Commands;
/// <summary>
/// 导出模型包命令。
/// </summary>
public sealed class ExportModelPackageCommand
{
/// <summary>
/// 模型包ID。
/// </summary>
public Guid ModelPackageId { get; init; }
/// <summary>
/// 导出格式。
/// </summary>
public string ExportFormat { get; init; } = "ZIP";
/// <summary>
/// 是否包含源代码。
/// </summary>
public bool IncludeSourceCode { get; init; } = false;
/// <summary>
/// 是否包含测试数据。
/// </summary>
public bool IncludeTestData { get; init; } = false;
/// <summary>
/// 导出路径。
/// </summary>
public string? ExportPath { get; init; }
/// <summary>
/// 操作者。
/// </summary>
public string Operator { get; init; } = string.Empty;
}