Index: iknow-api/Models/ContactInfo.cs
===================================================================
--- iknow-api/Models/ContactInfo.cs	(revision 4f5d8fdae48e097a6cc42e10b01f7775709e818d)
+++ iknow-api/Models/ContactInfo.cs	(revision 4f5d8fdae48e097a6cc42e10b01f7775709e818d)
@@ -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; }
+    }
+}
