17 lines
338 B
C#
17 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Atomx.Admin.Client.Models
|
|
{
|
|
public class ManufacturerSearch:BaseSearch
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }=string.Empty;
|
|
}
|
|
}
|