source: iknow-api/Models/HighSchool.cs

Last change on this file was ea40556, checked in by Stefan-Saveski <stefansaveski19@…>, 8 days ago
  • ready for presentation
  • Property mode set to 100644
File size: 356 bytes
RevLine 
[cab02ad]1namespace 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.