mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-11-27 17:44:56 +00:00
fixed delete community
This commit is contained in:
@ -11,6 +11,17 @@ abstract class SpaceManagementEvent extends Equatable {
|
||||
|
||||
class LoadCommunityAndSpacesEvent extends SpaceManagementEvent {}
|
||||
|
||||
class DeleteCommunityEvent extends SpaceManagementEvent {
|
||||
final String communityUuid;
|
||||
|
||||
const DeleteCommunityEvent({
|
||||
required this.communityUuid,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object> get props => [communityUuid];
|
||||
}
|
||||
|
||||
class CreateSpaceEvent extends SpaceManagementEvent {
|
||||
final String name;
|
||||
final String icon;
|
||||
|
||||
Reference in New Issue
Block a user