website cleanup
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
import type { PaymentDTO } from '../types/generated/PaymentDTO';
|
||||
|
||||
export class PaymentViewModel {
|
||||
id: string;
|
||||
type: string;
|
||||
amount: number;
|
||||
platformFee: number;
|
||||
netAmount: number;
|
||||
payerId: string;
|
||||
payerType: string;
|
||||
leagueId: string;
|
||||
id!: string;
|
||||
type!: string;
|
||||
amount!: number;
|
||||
platformFee!: number;
|
||||
netAmount!: number;
|
||||
payerId!: string;
|
||||
payerType!: string;
|
||||
leagueId!: string;
|
||||
seasonId?: string;
|
||||
status: string;
|
||||
createdAt: Date;
|
||||
status!: string;
|
||||
createdAt!: Date;
|
||||
completedAt?: Date;
|
||||
|
||||
constructor(dto: PaymentDTO) {
|
||||
|
||||
Reference in New Issue
Block a user