Files
briessenchecker/lib/models/profile.dart
2023-08-12 12:43:15 +02:00

13 lines
219 B
Dart

class Profile {
final String id;
final String username;
final String language;
final String bio;
Profile(
{required this.id,
this.username = '',
this.language = '',
this.bio = ''});
}