mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			430 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			430 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:flowy_sdk/protobuf/flowy-grid/field_entities.pb.dart';
 | 
						|
 | 
						|
class BoardGroupService {
 | 
						|
  final String gridId;
 | 
						|
  FieldPB? groupField;
 | 
						|
 | 
						|
  BoardGroupService(this.gridId);
 | 
						|
 | 
						|
  void setGroupField(FieldPB field) {
 | 
						|
    groupField = field;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
abstract class CanBeGroupField {
 | 
						|
  String get groupContent;
 | 
						|
}
 | 
						|
 | 
						|
// class SingleSelectGroup extends CanBeGroupField {
 | 
						|
//   final SingleSelectTypeOptionContext typeOptionContext;
 | 
						|
// }
 |