Add Blazor WebApp and rework data handling to utilize Entity Framework
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using BlazorSortableList;
|
||||
using Core.Entities;
|
||||
|
||||
namespace WebApp.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Class SharedSortableListGroup.
|
||||
/// Used for BlazorSortableList
|
||||
/// </summary>
|
||||
internal class SharedSortableListGroup : MultiSortableListGroup<EventDefinition>
|
||||
{
|
||||
public SharedSortableListGroup(Action refreshComponent)
|
||||
: base(refreshComponent)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user