Files
PiliPlus/lib/models_new/fav/fav_note/list.dart
bggRGjQaUbCoE dfb823c30c multi mention
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-09 18:36:21 +08:00

33 lines
658 B
Dart

import 'package:PiliPlus/pages/common/multi_select_controller.dart'
show MultiSelectData;
class FavNoteItemModel with MultiSelectData {
FavNoteItemModel({
this.webUrl,
this.title,
this.summary,
this.message,
this.pic,
this.cvid,
this.noteId,
});
String? webUrl;
String? title;
String? summary;
String? message;
String? pic;
dynamic cvid;
dynamic noteId;
FavNoteItemModel.fromJson(Map json) {
webUrl = json['web_url'];
title = json['title'];
summary = json['summary'];
message = json['message'];
pic = json['arc']?['pic'];
cvid = json['cvid'];
noteId = json['note_id'];
}
}