2022-01-31 10:18:34 +08:00

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,
});
}