You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.0 KiB

namespace X1.Application.Features.TestScenarios.Commands.CreateTestScenario;
/// <summary>
/// 创建测试场景响应
/// </summary>
public class CreateTestScenarioResponse
{
/// <summary>
/// 场景ID
/// </summary>
public string TestScenarioId { get; set; } = null!;
/// <summary>
/// 场景编码
/// </summary>
public string ScenarioCode { get; set; } = null!;
/// <summary>
/// 场景名称
/// </summary>
public string ScenarioName { get; set; } = null!;
/// <summary>
/// 场景类型
/// </summary>
public string Type { get; set; } = null!;
/// <summary>
/// 场景描述
/// </summary>
public string? Description { get; set; }
/// <summary>
/// 是否启用
/// </summary>
public bool IsEnabled { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreatedAt { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string CreatedBy { get; set; } = null!;
}