mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-05-12 11:12:19 -04:00
5 lines
123 B
Dart
5 lines
123 B
Dart
class NewProfileSpec {
|
|
NewProfileSpec({required this.name, required this.pronouns});
|
|
String name;
|
|
String pronouns;
|
|
}
|