18 lines
593 B
C#
18 lines
593 B
C#
//using Nop.Web.Framework.Models;
|
|
//using Nop.Web.Framework.Mvc.ModelBinding;
|
|
//using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models
|
|
{
|
|
public class TestGridModel
|
|
{
|
|
public Guid Id = Guid.NewGuid();
|
|
public string GridName { get; set; }
|
|
//public string GridControllerName { get; set; }
|
|
//public string GridEndpointName { get; set; }
|
|
public string ViewComponentName { get; set; }
|
|
public string ViewComponentLocation { get; set; }
|
|
|
|
public int? ParentRowId { get; set; }
|
|
}
|
|
} |