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