mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-11-30 09:10:12 +00:00
11 lines
230 B
Dart
11 lines
230 B
Dart
import 'package:flowy_sdk/protobuf/flowy-user-data-model/protobuf.dart' show UserProfile;
|
|
|
|
class NewUser {
|
|
UserProfile profile;
|
|
String workspaceId;
|
|
NewUser({
|
|
required this.profile,
|
|
required this.workspaceId,
|
|
});
|
|
}
|