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.

18 lines
572 B

using CellularManagement.Domain.Common;
using MediatR;
using System.ComponentModel.DataAnnotations;
namespace CellularManagement.Application.Features.TestCaseSets.Commands.DeleteTestCaseSet;
/// <summary>
/// 删除用例集命令
/// </summary>
public class DeleteTestCaseSetCommand : IRequest<OperationResult<bool>>
{
/// <summary>
/// 用例集ID
/// </summary>
[Required(ErrorMessage = "用例集ID不能为空")]
[MaxLength(50, ErrorMessage = "用例集ID长度不能超过50个字符")]
public string TestCaseSetId { get; set; } = null!;
}