版本260406
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user