13 lines
266 B
C#
13 lines
266 B
C#
namespace Atomx.Admin.Client.Models
|
|
{
|
|
public class SpecificationAttributeSearch : BaseSearch
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string? Name { get; set; }
|
|
|
|
public long CategoryId { get; set; }
|
|
}
|
|
}
|