6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
export abstract class Invoices {
|
|
public abstract readonly provider: string;
|
|
|
|
constructor(public readonly paymentId: string) {}
|
|
}
|