aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Entities/UserDetail.cs
diff options
context:
space:
mode:
author杨宇千 <crupest@outlook.com>2019-10-23 20:41:19 +0800
committer杨宇千 <crupest@outlook.com>2019-10-23 20:41:19 +0800
commitb67a26248d5dde4c3909c29b92b8a182248bdcc1 (patch)
treeb005aa3d8bc34d8e710ce7fae30236c62dcbe712 /Timeline/Entities/UserDetail.cs
parent9c9762b4ecbd816be98ee0dd606fe15cc253b415 (diff)
downloadtimeline-b67a26248d5dde4c3909c29b92b8a182248bdcc1.tar.gz
timeline-b67a26248d5dde4c3909c29b92b8a182248bdcc1.tar.bz2
timeline-b67a26248d5dde4c3909c29b92b8a182248bdcc1.zip
...
Diffstat (limited to 'Timeline/Entities/UserDetail.cs')
-rw-r--r--Timeline/Entities/UserDetail.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/Timeline/Entities/UserDetail.cs b/Timeline/Entities/UserDetail.cs
deleted file mode 100644
index e02d15c4..00000000
--- a/Timeline/Entities/UserDetail.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System.ComponentModel.DataAnnotations;
-using System.ComponentModel.DataAnnotations.Schema;
-
-namespace Timeline.Entities
-{
- [Table("user_details")]
- public class UserDetailEntity
- {
- [Column("id"), Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
- public long Id { get; set; }
-
- [Column("nickname"), MaxLength(15)]
- public string? Nickname { get; set; }
-
- [Column("qq"), MaxLength(15)]
- public string? QQ { get; set; }
-
- [Column("email"), MaxLength(50)]
- public string? Email { get; set; }
-
- [Column("phone_number"), MaxLength(15)]
- public string? PhoneNumber { get; set; }
-
- [Column("description")]
- public string? Description { get; set; }
-
- public long UserId { get; set; }
- }
-}