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