summaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src/lib/models/TimeLabelDto.ts
blob: 2b42d07e0d9034269ceecf570214e28bfb883ce2 (plain) (blame)
1
2
3
4
5
6
7
8
import { Temporal } from "@js-temporal/polyfill";

export interface TimeLabelDto {
    id?: string,
    modified_at?: Temporal.PlainDate,
    name?: string,
    color?: string
}