mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-27 05:45:51 +08:00
feat: pgc review
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
13
lib/models/common/pgc_review_type.dart
Normal file
13
lib/models/common/pgc_review_type.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
import 'package:PiliPlus/http/api.dart';
|
||||
|
||||
enum PgcReviewType {
|
||||
long(label: '长评', api: Api.pgcReviewL),
|
||||
short(label: '短评', api: Api.pgcReviewS);
|
||||
|
||||
final String label;
|
||||
final String api;
|
||||
const PgcReviewType({
|
||||
required this.label,
|
||||
required this.api,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user