Controllers

This commit is contained in:
Karolis Kundrotas
2021-10-29 09:17:17 +03:00
parent aff6f8df82
commit ba413d4330
22 changed files with 675 additions and 292 deletions

View File

@@ -12,7 +12,7 @@ namespace KTUSAPS.Data.Model
public string Name { get; set; }
public string NameEn { get; set; }
public virtual ICollection<Issue> Issues { get; set; }
public virtual HashSet<Issue> Issues { get; set; }
}
}