15 lines
No EOL
324 B
TypeScript
15 lines
No EOL
324 B
TypeScript
import { Area } from "./Area";
|
|
import { Tag } from "./Tag";
|
|
import { PriorityType } from "./Task";
|
|
|
|
export interface Project {
|
|
id?: number;
|
|
name: string;
|
|
description?: string;
|
|
active: boolean;
|
|
pin_to_sidebar?: boolean;
|
|
area?: Area;
|
|
area_id?: number | null;
|
|
tags?: Tag[];
|
|
priority?: PriorityType;
|
|
} |