mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
import { ArgsType, Field } from 'type-graphql'
|
|
import Decimal from 'decimal.js-light'
|
|
|
|
@ArgsType()
|
|
export default class TransactionSendArgs {
|
|
@Field(() => String)
|
|
email: string
|
|
|
|
@Field(() => Decimal)
|
|
amount: Decimal
|
|
|
|
@Field(() => String)
|
|
memo: string
|
|
}
|