16 lines
346 B
C#
16 lines
346 B
C#
using Syc.Core.Tools;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Syc.Basic.Web.Dtos.Common
|
|
{
|
|
public class ByCodesDeleteInput:Input
|
|
{
|
|
[MinItemsCount(0,ErrorMessage = "至少选择一项")]
|
|
public List<string> code { get; set; }
|
|
}
|
|
}
|