aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/runners/runner.model.ts
blob: 3284f2992d770c352b6cc45459d1a9808cb7706c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export interface Runner {
  id: number

  name: string
  description: string

  ip: string
  lastContact: Date | string

  createdAt: Date | string
  updatedAt: Date | string
}