Index: iknow-api/Models/HighSchool.cs
===================================================================
--- iknow-api/Models/HighSchool.cs	(revision 4f5d8fdae48e097a6cc42e10b01f7775709e818d)
+++ iknow-api/Models/HighSchool.cs	(revision 4f5d8fdae48e097a6cc42e10b01f7775709e818d)
@@ -0,0 +1,18 @@
+﻿using System.ComponentModel.DataAnnotations.Schema;
+
+namespace iknow_api.Models
+{
+    public enum type
+    {
+        strucen, gimnazija
+    }
+    public class HighSchool
+    {
+        public int Id { get; set; }
+        public float GPA { get; set; }
+        public type tip { get; set; }
+
+        public int UserId { get; set; }
+        public User User { get; set; }
+    }
+}
