mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
37 lines
744 B
Dart
37 lines
744 B
Dart
|
class MastodonUser {
|
||
|
String id;
|
||
|
String username;
|
||
|
String acct;
|
||
|
String note;
|
||
|
|
||
|
MastodonUser({
|
||
|
required this.id,
|
||
|
required this.username,
|
||
|
required this.acct,
|
||
|
required this.note,
|
||
|
});
|
||
|
|
||
|
factory MastodonUser.fromJson(Map<String, dynamic> json) {
|
||
|
return MastodonUser(
|
||
|
id: json['id'] as String,
|
||
|
username: json['username'] as String,
|
||
|
acct: json['acct'] as String,
|
||
|
note: json['note'] as String,
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class PinnedPost {
|
||
|
final String id;
|
||
|
final String content;
|
||
|
|
||
|
PinnedPost({required this.id, required this.content});
|
||
|
|
||
|
factory PinnedPost.fromJson(Map<String, dynamic> json) {
|
||
|
return PinnedPost(
|
||
|
id: json['id'] as String,
|
||
|
content: json['content'] as String,
|
||
|
);
|
||
|
}
|
||
|
}
|