refactor(data): replace schema classes with readonly models

This commit is contained in:
2026-07-17 13:21:40 +08:00
parent 3437312167
commit ae97366a4a
103 changed files with 1220 additions and 2117 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export type PaymentPlanCatalog = "default" | "tip";
export interface PaymentState {
planCatalog: PaymentPlanCatalog;
plans: PaymentPlan[];
plans: readonly PaymentPlan[];
isFirstRecharge: boolean;
selectedPlanId: string;
payChannel: PayChannel;