Index: iknow-api/Models/ContactInfo.cs
===================================================================
--- iknow-api/Models/ContactInfo.cs	(revision ff202cffe227f3226587a67fc50b6f4defb4418a)
+++ iknow-api/Models/ContactInfo.cs	(revision ff202cffe227f3226587a67fc50b6f4defb4418a)
@@ -0,0 +1,17 @@
+﻿using System.ComponentModel.DataAnnotations.Schema;
+
+namespace iknow_api.Models
+{
+    public class ContactInfo
+    {
+        public int Id { get; set; }
+        public string? city { get; set; }
+        public string? address { get; set; }
+        public string? municipality { get; set; }
+        public string? phoneNumber { get; set; }
+        public string? microsoftEmail { get; set; }
+        
+        public int UserId { get; set; }
+        public User User { get; set; }
+    }
+}
Index: iknow-api/Models/EnrollmentInfo.cs
===================================================================
--- iknow-api/Models/EnrollmentInfo.cs	(revision ff202cffe227f3226587a67fc50b6f4defb4418a)
+++ iknow-api/Models/EnrollmentInfo.cs	(revision ff202cffe227f3226587a67fc50b6f4defb4418a)
@@ -0,0 +1,22 @@
+﻿using System.ComponentModel.DataAnnotations.Schema;
+
+namespace iknow_api.Models
+{
+    public enum quota
+    {
+        drzavna, privatna, stipendija
+    }
+    public enum major
+    {
+        SIIS, PIT, KN, KI, IMB, IE, SSP, SEIS
+    }
+    public class EnrollmentInfo
+    {
+        public int Id { get; set; }
+        public int enrollmentYear { get; set; }
+        public quota quota;
+        public major major { get; set; }
+        public int UserId { get; set; }
+        public User User { get; set; }
+    }
+}
Index: iknow-api/Models/HighSchool.cs
===================================================================
--- iknow-api/Models/HighSchool.cs	(revision ff202cffe227f3226587a67fc50b6f4defb4418a)
+++ iknow-api/Models/HighSchool.cs	(revision ff202cffe227f3226587a67fc50b6f4defb4418a)
@@ -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; }
+    }
+}
Index: iknow-api/Models/User.cs
===================================================================
--- iknow-api/Models/User.cs	(revision c1553646f0c960dc4837b0901751e525a51f5613)
+++ iknow-api/Models/User.cs	(revision ff202cffe227f3226587a67fc50b6f4defb4418a)
@@ -21,4 +21,7 @@
         public DateTime CreatedAt { get; set; }
         public UserRole Role { get; set; }
+        public HighSchool? HighSchool { get; set; }
+        public ContactInfo? ContactInfo { get; set; }
+        public EnrollmentInfo? EnrollmentInfo { get; set; }
 
     }
