source: iknow-api/Models/ContactInfo.cs@ bb656bc

Last change on this file since bb656bc was 3592476, checked in by imbrsk <boris696boris@…>, 11 months ago

Refactored enums

  • Property mode set to 100644
File size: 491 bytes
Line 
1using System.ComponentModel.DataAnnotations.Schema;
2
3namespace iknow_api.Models
4{
5 public class ContactInfo
6 {
7 public int Id { get; set; }
8 public string? city { get; set; }
9 public string? address { get; set; }
10 public string? municipality { get; set; }
11 public string? phoneNumber { get; set; }
12 public string? microsoftEmail { get; set; }
13
14 public int UserId { get; set; }
15 public User? User { get; set; }
16 }
17}
Note: See TracBrowser for help on using the repository browser.