18 lines
483 B
C#
18 lines
483 B
C#
using DevExpress.Blazor;
|
|
using DevExpress.Blazor.Navigation.Internal;
|
|
using Microsoft.AspNetCore.Components;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FruitBankHybrid.Shared.Components.Toolbars
|
|
{
|
|
public class ToolbarBase : DxToolbar
|
|
{
|
|
[Parameter] public IGrid Grid { get; set; }
|
|
[Parameter] public Func<ToolbarItemClickEventArgs, Task> RefreshClick { get; set; }
|
|
}
|
|
}
|