source:
iknow-api/Models/HighSchool.cs
| Last change on this file was ea40556, checked in by , 8 days ago | |
|---|---|
|
|
| File size: 356 bytes | |
| Rev | Line | |
|---|---|---|
| [cab02ad] | 1 | namespace iknow_api.Models |
| 2 | { | |
| [2d64b2e] | 3 | public enum HighSchoolType |
| [cab02ad] | 4 | { |
| [2d64b2e] | 5 | Strucen, Gimnazija |
| [cab02ad] | 6 | } |
| [ea40556] | 7 | |
| [cab02ad] | 8 | public class HighSchool |
| 9 | { | |
| 10 | public int Id { get; set; } | |
| 11 | public float GPA { get; set; } | |
| [2d64b2e] | 12 | public HighSchoolType HighSchoolType { get; set; } |
| [cab02ad] | 13 | public int UserId { get; set; } |
| [2d64b2e] | 14 | public User? User { get; set; } |
| [cab02ad] | 15 | } |
| 16 | } |
Note:
See TracBrowser
for help on using the repository browser.
