mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 00:52:14 +00:00
21 lines
438 B
Dart
21 lines
438 B
Dart
![]() |
import 'package:flowy_sdk/protobuf/flowy-grid/field_entities.pb.dart';
|
||
|
|
||
|
class BoardGroupService {
|
||
|
final String gridId;
|
||
|
GridFieldPB? groupField;
|
||
|
|
||
|
BoardGroupService(this.gridId);
|
||
|
|
||
|
void setGroupField(GridFieldPB field) {
|
||
|
groupField = field;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
abstract class CanBeGroupField {
|
||
|
String get groupContent;
|
||
|
}
|
||
|
|
||
|
// class SingleSelectGroup extends CanBeGroupField {
|
||
|
// final SingleSelectTypeOptionContext typeOptionContext;
|
||
|
// }
|