Added priotity to Task

This commit is contained in:
2020-06-08 12:53:48 +02:00
parent a84a518d3f
commit 2660f3a407
2 changed files with 9 additions and 1 deletions

View File

@@ -36,11 +36,17 @@ export class BackendService {
}
enum Priority {
High="high",
Middle="middle",
Low="low"
}
//enum prio{high, middle, low}; --> noch nicht im backend
export interface Task {
id?: number;
title: string;
//prio; --> noch nicht im backend
priority?: Priority;
content?: string;
status?: number;
category?: number;