diff options
Diffstat (limited to 'packages/models/src/runners/runner-registration-token.ts')
-rw-r--r-- | packages/models/src/runners/runner-registration-token.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/models/src/runners/runner-registration-token.ts b/packages/models/src/runners/runner-registration-token.ts new file mode 100644 index 000000000..0a157aa51 --- /dev/null +++ b/packages/models/src/runners/runner-registration-token.ts | |||
@@ -0,0 +1,10 @@ | |||
1 | export interface RunnerRegistrationToken { | ||
2 | id: number | ||
3 | |||
4 | registrationToken: string | ||
5 | |||
6 | createdAt: Date | ||
7 | updatedAt: Date | ||
8 | |||
9 | registeredRunnersCount: number | ||
10 | } | ||