mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
18 lines
313 B
TypeScript
18 lines
313 B
TypeScript
import { Decimal } from 'decimal.js-light'
|
|
import { ObjectType, Field } from 'type-graphql'
|
|
|
|
@ObjectType()
|
|
export class AdminUpdateContribution {
|
|
@Field(() => Date)
|
|
date: Date
|
|
|
|
@Field(() => String)
|
|
memo: string
|
|
|
|
@Field(() => Decimal)
|
|
amount: Decimal
|
|
|
|
@Field(() => [Decimal])
|
|
creation: Decimal[]
|
|
}
|