mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
export interface CreationInterface {
|
|
email: string
|
|
amount: number
|
|
memo: string
|
|
creationDate: string
|
|
confirmed?: boolean
|
|
// number of months to move the confirmed creation to the past
|
|
moveCreationDate?: number
|
|
}
|