|
Last change
on this file since ea40556 was ea40556, checked in by Stefan-Saveski <stefansaveski19@…>, 8 days ago |
|
|
-
Property mode
set to
100644
|
|
File size:
356 bytes
|
| Line | |
|---|
| 1 | namespace iknow_api.Models
|
|---|
| 2 | {
|
|---|
| 3 | public enum HighSchoolType
|
|---|
| 4 | {
|
|---|
| 5 | Strucen, Gimnazija
|
|---|
| 6 | }
|
|---|
| 7 |
|
|---|
| 8 | public class HighSchool
|
|---|
| 9 | {
|
|---|
| 10 | public int Id { get; set; }
|
|---|
| 11 | public float GPA { get; set; }
|
|---|
| 12 | public HighSchoolType HighSchoolType { get; set; }
|
|---|
| 13 | public int UserId { get; set; }
|
|---|
| 14 | public User? User { get; set; }
|
|---|
| 15 | }
|
|---|
| 16 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.