point record

This commit is contained in:
Phuoc Nguyen
2025-11-26 11:48:02 +07:00
parent 3741239d83
commit a07f165f0c
12 changed files with 1761 additions and 12 deletions

View File

@@ -18,11 +18,11 @@ enum PointsStatus {
String get displayName {
switch (this) {
case PointsStatus.pending:
return 'Pending';
return 'Chờ duyệt';
case PointsStatus.approved:
return 'Approved';
return 'Đã duyệt';
case PointsStatus.rejected:
return 'Rejected';
return 'Bị từ chối';
}
}
}