mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-24 01:18:56 +00:00
8 lines
169 B
Dart
8 lines
169 B
Dart
import 'package:flowy_sdk/protobuf/flowy-grid-data-model/grid.pb.dart';
|
|
|
|
class GridColumnData {
|
|
final List<Field> fields;
|
|
|
|
GridColumnData({required this.fields});
|
|
}
|