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 | 4c6f4c214edc5b574951d4cc8f3654bc30efa8da (patch) | |
tree | f0a84c263a58772b02f5d2859444f13cc5df5bdc /Timeline/Models/Timeline.cs | |
parent | 994ebd75db1a3d4317402b0552f4a9cc41fd7349 (diff) | |
download | timeline-4c6f4c214edc5b574951d4cc8f3654bc30efa8da.tar.gz timeline-4c6f4c214edc5b574951d4cc8f3654bc30efa8da.tar.bz2 timeline-4c6f4c214edc5b574951d4cc8f3654bc30efa8da.zip |
refactor(back): No longer use standard guid but just use 32-length hex for unique id of timeline.
Diffstat (limited to 'Timeline/Models/Timeline.cs')
-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!;
|