Changeset ab652ff for iknow-api/Models/HighSchool.cs
- Timestamp:
- 12/09/25 14:54:20 (10 months ago)
- Branches:
- master
- Children:
- 615f18d, f735dac
- Parents:
- 334981d
- File:
-
- 1 edited
-
iknow-api/Models/HighSchool.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/Models/HighSchool.cs
r334981d rab652ff 3 3 namespace iknow_api.Models 4 4 { 5 public enum type5 public enum HighSchoolType 6 6 { 7 strucen, gimnazija7 Strucen, Gimnazija 8 8 } 9 9 public class HighSchool … … 11 11 public int Id { get; set; } 12 12 public float GPA { get; set; } 13 public type tip { get; set; } 14 13 public HighSchoolType HighSchoolType { get; set; } 15 14 public int UserId { get; set; } 16 public User User { get; set; } 15 public User? User { get; set; } 16 public string? StudyLanguage { get; set; } 17 17 } 18 18 }
Note:
See TracChangeset
for help on using the changeset viewer.
