diff options
author | 杨宇千 <crupest@outlook.com> | 2019-10-19 21:37:15 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-10-19 21:37:15 +0800 |
commit | b00cfa30a4f6a1c6d896d46da7dd063abf632cd3 (patch) | |
tree | e6168234660307247111ee369a0b2123823614eb /Timeline/Entities/UserDetail.cs | |
parent | 2984abc9aa0429380459e5b5b6fda2d20058041b (diff) | |
download | timeline-b00cfa30a4f6a1c6d896d46da7dd063abf632cd3.tar.gz timeline-b00cfa30a4f6a1c6d896d46da7dd063abf632cd3.tar.bz2 timeline-b00cfa30a4f6a1c6d896d46da7dd063abf632cd3.zip |
...
Diffstat (limited to 'Timeline/Entities/UserDetail.cs')
-rw-r--r-- | Timeline/Entities/UserDetail.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Timeline/Entities/UserDetail.cs b/Timeline/Entities/UserDetail.cs index bc14dbe6..e02d15c4 100644 --- a/Timeline/Entities/UserDetail.cs +++ b/Timeline/Entities/UserDetail.cs @@ -10,19 +10,19 @@ namespace Timeline.Entities public long Id { get; set; }
[Column("nickname"), MaxLength(15)]
- public string Nickname { get; set; }
+ public string? Nickname { get; set; }
[Column("qq"), MaxLength(15)]
- public string QQ { get; set; }
+ public string? QQ { get; set; }
[Column("email"), MaxLength(50)]
- public string Email { get; set; }
+ public string? Email { get; set; }
[Column("phone_number"), MaxLength(15)]
- public string PhoneNumber { get; set; }
+ public string? PhoneNumber { get; set; }
[Column("description")]
- public string Description { get; set; }
+ public string? Description { get; set; }
public long UserId { get; set; }
}
|