fix: update DTO

This commit is contained in:
fPolic
2024-01-17 10:59:59 +01:00
parent dfcb5e7995
commit 57b88968a7

View File

@@ -2,9 +2,14 @@
* TODO
*/
export interface CreatePaymentCollectionDTO {}
export interface CreatePaymentCollectionDTO {
region_id: string
currency_code: string
amount: number
}
export interface UpdatePaymentCollectionDTO {}
export interface UpdatePaymentCollectionDTO
extends CreatePaymentCollectionDTO {}
export interface CreatePaymentDTO {
amount: number