source:
iknow-api/Models/Major.cs@
10009b9
| Last change on this file since 10009b9 was a92a2a4, checked in by , 11 months ago | |
|---|---|
|
|
| File size: 264 bytes | |
| Line | |
|---|---|
| 1 | using System.ComponentModel.DataAnnotations.Schema; |
| 2 | |
| 3 | namespace iknow_api.Models |
| 4 | { |
| 5 | public class Major |
| 6 | { |
| 7 | public int Id { get; set; } |
| 8 | |
| 9 | public string? Name { get; set; } |
| 10 | public ICollection<MajorSubjects>? Subjects { get; set; } |
| 11 | } |
| 12 | } |
Note:
See TracBrowser
for help on using the repository browser.
