mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
feat: show member article
This commit is contained in:
21
lib/models/space_article/pendant.g.dart
Normal file
21
lib/models/space_article/pendant.g.dart
Normal file
@@ -0,0 +1,21 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'pendant.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
Pendant _$PendantFromJson(Map<String, dynamic> json) => Pendant(
|
||||
pid: (json['pid'] as num?)?.toInt(),
|
||||
name: json['name'] as String?,
|
||||
image: json['image'] as String?,
|
||||
expire: (json['expire'] as num?)?.toInt(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$PendantToJson(Pendant instance) => <String, dynamic>{
|
||||
'pid': instance.pid,
|
||||
'name': instance.name,
|
||||
'image': instance.image,
|
||||
'expire': instance.expire,
|
||||
};
|
||||
Reference in New Issue
Block a user