source: iknow-api/Models/HighSchool.cs@ b8093a0

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