Changed attribute names to english

This commit is contained in:
Niggl1999 2020-06-03 19:24:59 +02:00
parent cd664f7c38
commit 5b6ce5c99b
1 changed files with 9 additions and 11 deletions

View File

@ -19,23 +19,21 @@ namespace ScrumTaskboard
public class ScrumTask
{
public int Id { get; set; }
public int id { get; set; }
public string Titel { get; set; }
public string title { get; set; }
public string Inhalt { get; set; }
public string content { get; set; }
public int Status { get; set; }
public int Kategorie { get; set; }
public int Bearbeiter { get; set; }
public int status { get; set; }
public int category { get; set; }
public int assignedto { get; set; }
public int ZugeordneterSprint { get; set; }
public int Projekt { get; set; }
public int Userstory { get; set; }
public int sprint { get; set; }
public int project { get; set; }
public int userstory { get; set; }
}
}