rwadurian/backend/services/wallet-service/src/application/commands/deduct-for-planting.command.ts

8 lines
173 B
TypeScript

export class DeductForPlantingCommand {
constructor(
public readonly userId: string,
public readonly amount: number,
public readonly orderId: string,
) {}
}