8 lines
115 B
TypeScript
8 lines
115 B
TypeScript
export type Bonus = {
|
|
id: number
|
|
month: string
|
|
amount: number
|
|
comment: string | null
|
|
createdAt: string
|
|
}
|