mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-05 15:29:59 +00:00

* chore: rename flowy-database to flowy-sqlite * refactor: rename flowy-grid to flowy-database * refactor: rename grid to database * refactor: rename GridEvent to DatabaseEvent * refactor: rename grid_id to database_id * refactor: rename dart code
13 lines
259 B
Dart
13 lines
259 B
Dart
import 'package:appflowy_backend/protobuf/flowy-database/field_entities.pb.dart';
|
|
|
|
class BoardGroupService {
|
|
final String viewId;
|
|
FieldPB? groupField;
|
|
|
|
BoardGroupService(this.viewId);
|
|
|
|
void setGroupField(FieldPB field) {
|
|
groupField = field;
|
|
}
|
|
}
|