|
1 | | -using System; |
2 | | -using System.Collections.Generic; |
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
3 | 3 |
|
4 | | -namespace Hermes.SituationRoom.Data.Entities; |
| 4 | +namespace Hermes.SituationRoom.Data.Entities; |
| 5 | + |
| 6 | +public partial class User |
| 7 | +{ |
| 8 | + public Guid Uid { get; set; } |
5 | 9 |
|
6 | | -public partial class User |
7 | | -{ |
8 | | - public Guid Uid { get; set; } |
| 10 | + public string FirstName { get; set; } |
9 | 11 |
|
10 | | - public string FirstName { get; set; } |
| 12 | + public string LastName { get; set; } |
11 | 13 |
|
12 | | - public string LastName { get; set; } |
| 14 | + public string EmailAddress { get; set; } |
13 | 15 |
|
14 | | - public string EmailAddress { get; set; } |
| 16 | + public byte[] PasswordHash { get; set; } |
15 | 17 |
|
16 | | - public byte[] PasswordHash { get; set; } |
| 18 | + public byte[] PasswordSalt { get; set; } |
17 | 19 |
|
18 | | - public byte[] PasswordSalt { get; set; } |
| 20 | + public string ProfileIcon { get; set; } |
19 | 21 |
|
20 | | - public string ProfileIcon { get; set; } |
| 22 | + public string ProfileIconColor { get; set; } |
21 | 23 |
|
22 | | - public string ProfileIconColor { get; set; } |
| 24 | + public virtual Activist Activist { get; set; } |
23 | 25 |
|
24 | | - public virtual Activist Activist { get; set; } |
| 26 | + public virtual ICollection<Chat> ChatUser1Us { get; set; } = new List<Chat>(); |
25 | 27 |
|
26 | | - public virtual ICollection<Chat> ChatUser1Us { get; set; } = new List<Chat>(); |
| 28 | + public virtual ICollection<Chat> ChatUser2Us { get; set; } = new List<Chat>(); |
27 | 29 |
|
28 | | - public virtual ICollection<Chat> ChatUser2Us { get; set; } = new List<Chat>(); |
| 30 | + public virtual ICollection<Comment> Comments { get; set; } = new List<Comment>(); |
29 | 31 |
|
30 | | - public virtual ICollection<Comment> Comments { get; set; } = new List<Comment>(); |
| 32 | + public virtual Journalist Journalist { get; set; } |
31 | 33 |
|
32 | | - public virtual Journalist Journalist { get; set; } |
| 34 | + public virtual ICollection<Message> Messages { get; set; } = new List<Message>(); |
33 | 35 |
|
34 | | - public virtual ICollection<Message> Messages { get; set; } = new List<Message>(); |
| 36 | + public virtual ICollection<Post> Posts { get; set; } = new List<Post>(); |
35 | 37 |
|
36 | | - public virtual ICollection<Post> Posts { get; set; } = new List<Post>(); |
| 38 | + public virtual ICollection<PrivacyLevelPersonal> PrivacyLevelPersonalConsumerUs { get; set; } = new List<PrivacyLevelPersonal>(); |
37 | 39 |
|
38 | | - public virtual ICollection<PrivacyLevelPersonal> PrivacyLevelPersonalConsumerUs { get; set; } = new List<PrivacyLevelPersonal>(); |
| 40 | + public virtual ICollection<PrivacyLevelPersonal> PrivacyLevelPersonalOwnerUs { get; set; } = new List<PrivacyLevelPersonal>(); |
39 | 41 |
|
40 | | - public virtual ICollection<PrivacyLevelPersonal> PrivacyLevelPersonalOwnerUs { get; set; } = new List<PrivacyLevelPersonal>(); |
41 | | - |
42 | | - public virtual ICollection<UserChatReadStatus> UserChatReadStatuses { get; set; } = new List<UserChatReadStatus>(); |
43 | | -} |
| 42 | + public virtual ICollection<UserChatReadStatus> UserChatReadStatuses { get; set; } = new List<UserChatReadStatus>(); |
| 43 | +} |
0 commit comments