folder_post.dart 227 B

1234567891011
  1. class FolderPost {
  2. String? name;
  3. String? superior; // superior上级id (为空就是顶级)
  4. FolderPost({this.name, this.superior});
  5. Map<String, dynamic> toJson() => {
  6. "name": name,
  7. "superior": superior,
  8. };
  9. }