source: iknow-api/Models/Subjects.cs@ a92a2a4

Last change on this file since a92a2a4 was a92a2a4, checked in by imbrsk <boris696boris@…>, 11 months ago

ADDEED ALL MODESL :)

  • Property mode set to 100644
File size: 636 bytes
Line 
1namespace iknow_api.Models
2{
3 public class Subject
4 {
5 public int Id { get; set; }
6 public string? Name { get; set; }
7 public string? Code { get; set; }
8 public int? AwardedCredits { get; set; }
9 public int? DependencyCredit { get; set; }
10 public ICollection<DependencySubject>? Dependencies { get; set; }
11 public ICollection<DependencySubject>? Dependents { get; set; }
12 public ICollection<MajorSubjects>? Majors { get; set; }
13 public ICollection<SemesterSubject>? SemesterSubjects { get; set; }
14 }
15}
Note: See TracBrowser for help on using the repository browser.