AW-1805 Add mollie service
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit

This commit is contained in:
2021-01-11 19:32:08 +01:00
parent a782d8ebe9
commit 30dab68468
3 changed files with 52 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
export interface IMolliePaymentResponse {
createdAt?: Date,
expiresAt?: Date,
checkoutUrl?: string,
}
export class MolliePaymentResponse implements IMolliePaymentResponse {
public createdAt?: Date;
public expiresAt?: Date;
public checkoutUrl?: string;
constructor() {
}
}