using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Model { /// /// 根据名称搜索Dto /// public class NameSearchDto { /// /// 名称 /// public string Name { get; set; } } }