main: add many things to app :)
Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
@@ -23,6 +23,9 @@ export interface Album {
|
||||
bitrate: string; // e.g., "320kbps", "lossless"
|
||||
}
|
||||
|
||||
export type PurchaseStatus = 'pending' | 'approved' | 'rejected';
|
||||
export type PaymentMethod = 'ipg' | 'card-to-card';
|
||||
|
||||
export interface Purchase {
|
||||
id?: number;
|
||||
albumId: string;
|
||||
@@ -32,4 +35,6 @@ export interface Purchase {
|
||||
phoneNumber?: string;
|
||||
txReceipt?: string;
|
||||
purchaseDate: Date | number;
|
||||
approvalStatus?: PurchaseStatus; // pending, approved, rejected
|
||||
paymentMethod?: PaymentMethod; // ipg or card-to-card
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user