初始化项目

This commit is contained in:
wyf
2025-04-11 08:47:46 +08:00
parent e0e1055d65
commit 9396f18d09
199 changed files with 6516 additions and 216 deletions

14
lib/model/issue.dart Normal file
View File

@@ -0,0 +1,14 @@
import 'package:json_annotation/json_annotation.dart';
part 'issue.g.dart';
@JsonSerializable()
class IssueModel {
String? title;
String? title_content;
IssueModel();
static IssueModel fromJson(Map<String, dynamic> json) =>
_$IssueModelFromJson(json);
Map<String, dynamic> toJson() => _$IssueModelToJson(this);
}