aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/User.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-08-11 16:19:46 +0800
committercrupest <crupest@outlook.com>2020-08-11 16:19:46 +0800
commit4685d69fe965b32438c399a4ad4a3deee9fb0a55 (patch)
tree3680857e4fe4c00af4a682430efa87161a210279 /Timeline/Models/User.cs
parentc3369742b6e68714d0a7df46a99a0798eb2d6940 (diff)
downloadtimeline-4685d69fe965b32438c399a4ad4a3deee9fb0a55.tar.gz
timeline-4685d69fe965b32438c399a4ad4a3deee9fb0a55.tar.bz2
timeline-4685d69fe965b32438c399a4ad4a3deee9fb0a55.zip
Migrate DateTimeOffset to DateTime.
Diffstat (limited to 'Timeline/Models/User.cs')
-rw-r--r--Timeline/Models/User.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Timeline/Models/User.cs b/Timeline/Models/User.cs
index 3d0b2f1a..f08a62db 100644
--- a/Timeline/Models/User.cs
+++ b/Timeline/Models/User.cs
@@ -13,9 +13,9 @@ namespace Timeline.Models
public long? Id { get; set; }
public string? Password { get; set; }
public long? Version { get; set; }
- public DateTimeOffset? UsernameChangeTime { get; set; }
- public DateTimeOffset? CreateTime { get; set; }
- public DateTimeOffset? LastModified { get; set; }
+ public DateTime? UsernameChangeTime { get; set; }
+ public DateTime? CreateTime { get; set; }
+ public DateTime? LastModified { get; set; }
#endregion secret
}
}