Changed prio to enum

This commit is contained in:
Nicolai Ort 2020-06-05 15:29:34 +02:00
parent 2393177b2e
commit 541d276b74
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ namespace ScrumTaskboard
public int id { get; set; }
public string title { get; set; }
public string content { get; set; }
public int priority { get; set; }
public ScrumPrio priority { get; set; }
public int status { get; set; }
public int category { get; set; }
public int createdby { get; set; }