mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
import { TransactionType } from '@dltConnector/enum/TransactionType'
|
|
|
|
export interface TransactionRecipe {
|
|
id: number
|
|
createdAt: string
|
|
type: TransactionType
|
|
topic: string
|
|
}
|