aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/lib/models/TimeCategoryDto.ts
blob: fcdb7eaee092d436ed13246c945fa01d0c66f9fc (plain) (blame)
1
2
3
4
5
6
7
8
9
import { Temporal } from "temporal-polyfill";

export interface TimeCategoryDto {
    selected?: boolean;
    id?: string,
    modified_at?: Temporal.PlainDate,
    name?: string,
    color?: string
}