12 lines
289 B
C#
12 lines
289 B
C#
|
using Fluxor;
|
|||
|
|
|||
|
namespace Start.Client.Store.Features.CreateGroup {
|
|||
|
public class CreateGroupFeature : Feature<CreateGroupState> {
|
|||
|
public override string GetName() => "Create Group";
|
|||
|
|
|||
|
protected override CreateGroupState GetInitialState() {
|
|||
|
return new CreateGroupState();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|