blob: 875e8cbc76d5e4f20f22d0bd49e8fd7491dd14ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { Temporal } from "@js-temporal/polyfill";
export interface TimeCategoryDto {
selected?: boolean;
id?: string,
modified_at?: Temporal.PlainDate,
name?: string,
color?: string
}
|