veilidchat/lib/account_manager/models/new_profile_spec.dart
Christien Rioux 31f562119a checkpoint
2024-01-04 22:29:43 -05:00

6 lines
123 B
Dart

class NewProfileSpec {
NewProfileSpec({required this.name, required this.pronouns});
String name;
String pronouns;
}