Progresss

This commit is contained in:
Karolis2011
2021-12-16 17:33:56 +02:00
parent ba413d4330
commit 997154efa8
17 changed files with 420 additions and 25 deletions

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace KTUSAPS.Data.Model
@@ -12,6 +13,7 @@ namespace KTUSAPS.Data.Model
public string Name { get; set; }
public string NameEn { get; set; }
[JsonIgnore]
public virtual HashSet<Issue> Issues { get; set; }
}