diff options
author | crupest <crupest@outlook.com> | 2020-06-14 14:21:44 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-14 14:21:44 +0800 |
commit | 5d467d950fd4078146709470084cbfae331b8b10 (patch) | |
tree | 04068a987a6edce803d99e8e110509436604f70d /Timeline/Models | |
parent | 7ed5306c62262921264bf9c83e00a4c9f3ae33b1 (diff) | |
download | timeline-5d467d950fd4078146709470084cbfae331b8b10.tar.gz timeline-5d467d950fd4078146709470084cbfae331b8b10.tar.bz2 timeline-5d467d950fd4078146709470084cbfae331b8b10.zip |
refactor(back): No longer use standard guid but just use 32-length hex for unique id of timeline.
Diffstat (limited to 'Timeline/Models')
-rw-r--r-- | Timeline/Models/Timeline.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/Models/Timeline.cs b/Timeline/Models/Timeline.cs index c47d7be3..d4b3e849 100644 --- a/Timeline/Models/Timeline.cs +++ b/Timeline/Models/Timeline.cs @@ -70,7 +70,7 @@ namespace Timeline.Models public class Timeline
#pragma warning restore CA1724 // Type names should not match namespaces
{
- public Guid UniqueID { get; set; } = default!;
+ public string UniqueID { get; set; } = default!;
public string Name { get; set; } = default!;
public string Description { get; set; } = default!;
public User Owner { get; set; } = default!;
|