|
Last change
on this file since bf18ca4 was ab652ff, checked in by imbrsk <boris696boris@…>, 10 months ago |
|
Refactor model properties for consistency and clarity
|
-
Property mode
set to
100644
|
|
File size:
491 bytes
|
| Rev | Line | |
|---|
| [4f5d8fd] | 1 | using System.ComponentModel.DataAnnotations.Schema;
|
|---|
| 2 |
|
|---|
| 3 | namespace iknow_api.Models
|
|---|
| 4 | {
|
|---|
| 5 | public class ContactInfo
|
|---|
| 6 | {
|
|---|
| 7 | public int Id { get; set; }
|
|---|
| [ab652ff] | 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; }
|
|---|
| [4f5d8fd] | 13 |
|
|---|
| 14 | public int UserId { get; set; }
|
|---|
| [586825e] | 15 | public User? User { get; set; }
|
|---|
| [4f5d8fd] | 16 | }
|
|---|
| 17 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.