diff options
author | crupest <crupest@outlook.com> | 2020-08-11 16:19:46 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-11 16:19:46 +0800 |
commit | 4685d69fe965b32438c399a4ad4a3deee9fb0a55 (patch) | |
tree | 3680857e4fe4c00af4a682430efa87161a210279 /Timeline/Models | |
parent | c3369742b6e68714d0a7df46a99a0798eb2d6940 (diff) | |
download | timeline-4685d69fe965b32438c399a4ad4a3deee9fb0a55.tar.gz timeline-4685d69fe965b32438c399a4ad4a3deee9fb0a55.tar.bz2 timeline-4685d69fe965b32438c399a4ad4a3deee9fb0a55.zip |
Migrate DateTimeOffset to DateTime.
Diffstat (limited to 'Timeline/Models')
-rw-r--r-- | Timeline/Models/User.cs | 6 |
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
}
}
|