mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 02:56:58 +08:00
opt: space tab
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
import 'package:PiliPlus/models/space/tab_item.dart';
|
||||
import 'package:json_annotation/json_annotation.dart';
|
||||
|
||||
import 'package:PiliPlus/models/space/item.dart';
|
||||
|
||||
part 'tab2.g.dart';
|
||||
|
||||
@JsonSerializable()
|
||||
class Tab2 {
|
||||
String? title;
|
||||
String? param;
|
||||
List<SpaceItem>? items;
|
||||
final String? title;
|
||||
final String? param;
|
||||
final List<SpaceTabItem>? items;
|
||||
|
||||
Tab2({this.title, this.param, this.items});
|
||||
const Tab2({this.title, this.param, this.items});
|
||||
|
||||
factory Tab2.fromJson(Map<String, dynamic> json) => _$Tab2FromJson(json);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user