15 lines
350 B
C#
15 lines
350 B
C#
using Nop.Web.Framework.Models;
|
|
|
|
namespace Nop.Web.Areas.Admin.Models.Catalog;
|
|
|
|
/// <summary>
|
|
/// Represents a specification attribute option search model
|
|
/// </summary>
|
|
public partial record SpecificationAttributeOptionSearchModel : BaseSearchModel
|
|
{
|
|
#region Properties
|
|
|
|
public int SpecificationAttributeId { get; set; }
|
|
|
|
#endregion
|
|
} |