You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
670 B
27 lines
670 B
using JetBrains.Annotations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp;
|
|
|
|
namespace Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme.PageToolbars;
|
|
|
|
public class PageToolbarItem
|
|
{
|
|
[NotNull]
|
|
public Type ComponentType { get; }
|
|
|
|
[CanBeNull]
|
|
public Dictionary<string, object> Arguments { get; set; }
|
|
|
|
public int Order { get; set; }
|
|
|
|
public PageToolbarItem(
|
|
[NotNull] Type componentType,
|
|
[CanBeNull] Dictionary<string, object> arguments = null,
|
|
int order = 0)
|
|
{
|
|
ComponentType = Check.NotNull(componentType, nameof(componentType));
|
|
Arguments = arguments;
|
|
Order = order;
|
|
}
|
|
}
|
|
|