mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-12-13 01:54:27 -05:00
6 lines
123 B
Dart
6 lines
123 B
Dart
|
class NewProfileSpec {
|
||
|
NewProfileSpec({required this.name, required this.pronouns});
|
||
|
String name;
|
||
|
String pronouns;
|
||
|
}
|