i_auth.dart 230 B

12345678910
  1. import 'package:flowy_sdk/protobuf/flowy-user-data-model/protobuf.dart' show UserProfile;
  2. class NewUser {
  3. UserProfile profile;
  4. String workspaceId;
  5. NewUser({
  6. required this.profile,
  7. required this.workspaceId,
  8. });
  9. }