veilidchat/lib/account_manager/models/new_profile_spec.dart

6 lines
123 B
Dart
Raw Normal View History

2023-12-27 22:56:24 -05:00
class NewProfileSpec {
NewProfileSpec({required this.name, required this.pronouns});
String name;
String pronouns;
}