12 lines
313 B
C#
12 lines
313 B
C#
|
using Fluxor;
|
|||
|
|
|||
|
namespace Start.Client.Store.Features.DeleteContainer {
|
|||
|
public class DeleteContainerFeature : Feature<DeleteContainerState> {
|
|||
|
public override string GetName() => "Delete Container";
|
|||
|
|
|||
|
protected override DeleteContainerState GetInitialState() {
|
|||
|
return new DeleteContainerState();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|