Index: iknow-api/DTOs/UserDTO.cs
===================================================================
--- iknow-api/DTOs/UserDTO.cs	(revision a92a2a413484ff7d4eb9ff6632fcabdffe2b36f4)
+++ iknow-api/DTOs/UserDTO.cs	(revision bb656bc5647f95efd8e2ff5bd88337b286271492)
@@ -1,3 +1,5 @@
-﻿namespace iknow_api.DTOs
+﻿using System.Text.Json.Serialization;
+
+namespace iknow_api.DTOs
 {
     // Login DTO
@@ -25,5 +27,5 @@
         public UserRole Role { get; set; }
         public float gpa { get; set; }
-        public Type tip { get; set; }
+        public HighSchoolType tip { get; set; }
         public string city { get; set; } = string.Empty;
         public string address { get; set; } = string.Empty;
@@ -57,5 +59,5 @@
         Student
     }
-    public enum Type
+    public enum HighSchoolType
     {
         strucen, gimnazija
@@ -65,7 +67,3 @@
         drzavna, privatna, stipendija
     }
-    public enum Major
-    {
-        SIIS, PIT, KN, KI, IMB, IE, SSP, SEIS
-    }
 }
