mod: 数据请求

This commit is contained in:
guozhigq
2023-06-25 22:02:48 +08:00
parent 430ca0f5e6
commit 838a141bc7
7 changed files with 466 additions and 101 deletions

View File

@ -0,0 +1,11 @@
enum DynamicsType {
all,
video,
pgc,
article,
}
extension BusinessTypeExtension on DynamicsType {
String get values => ['all', 'video', 'pgc', 'article'][index];
String get labels => ['全部', '视频投稿', '追番追剧', '专栏'][index];
}