初始化项目

This commit is contained in:
2026-03-12 21:24:49 +08:00
commit c2b9c5d4c0
67 changed files with 8659 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
class Album {
final int id;
final String name;
final DateTime createdAt;
final DateTime updatedAt;
Album({
required this.id,
required this.name,
required this.createdAt,
required this.updatedAt,
});
Map<String, dynamic> toJson() {
return {
'id': id,
'name': name,
'createdAt': createdAt.toIso8601String(),
'updatedAt': updatedAt.toIso8601String(),
};
}
}