12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import type { Site } from './site'
|
|
import type { Contract } from './contract'
|
|
|
|
export type Employee = {
|
|
id: number
|
|
firstName: string
|
|
lastName: string
|
|
site: Site
|
|
contract?: Contract | null
|
|
displayOrder?: number
|
|
}
|