2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/models/utils.ts
Divlo a0fa66e8f5
feat: design applications and first api calls
Co-authored-by: Walid <87608619+WalidKorchi@users.noreply.github.com>
2021-10-24 06:09:43 +02:00

15 lines
342 B
TypeScript

import { Type } from '@sinclair/typebox'
export const date = {
createdAt: Type.String({
format: 'date-time',
description: 'Created date time'
}),
updatedAt: Type.String({
format: 'date-time',
description: 'Last updated date time'
})
}
export const id = Type.Integer({ minimum: 1, description: 'Unique identifier' })