Files
PiliPlus/lib/models_new/space/space/relation.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

18 lines
363 B
Dart

class SpaceRelation {
int? status;
int? isFollow;
int? isFollowed;
SpaceRelation({
this.status,
this.isFollow,
this.isFollowed,
});
factory SpaceRelation.fromJson(Map<String, dynamic> json) => SpaceRelation(
status: json['status'] as int?,
isFollow: json['is_follow'] as int?,
isFollowed: json['is_followed'] as int?,
);
}