diff options
author | crupest <crupest@outlook.com> | 2021-02-04 21:26:01 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-02-04 21:26:01 +0800 |
commit | c6a4b88794cb87c25757542ad0642e9df56ddf0f (patch) | |
tree | 6cf4581e12f10f4d6b6d17ac95f1c6eb1f819eec /BackEnd/Timeline/Models/Http/HttpTimelinePostCreateRequest.cs | |
parent | 1af0c82144a0f28f86922ecda04b159a553c699e (diff) | |
download | timeline-c6a4b88794cb87c25757542ad0642e9df56ddf0f.tar.gz timeline-c6a4b88794cb87c25757542ad0642e9df56ddf0f.tar.bz2 timeline-c6a4b88794cb87c25757542ad0642e9df56ddf0f.zip |
...
Diffstat (limited to 'BackEnd/Timeline/Models/Http/HttpTimelinePostCreateRequest.cs')
-rw-r--r-- | BackEnd/Timeline/Models/Http/HttpTimelinePostCreateRequest.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Models/Http/HttpTimelinePostCreateRequest.cs b/BackEnd/Timeline/Models/Http/HttpTimelinePostCreateRequest.cs index cfbec029..b25adf36 100644 --- a/BackEnd/Timeline/Models/Http/HttpTimelinePostCreateRequest.cs +++ b/BackEnd/Timeline/Models/Http/HttpTimelinePostCreateRequest.cs @@ -1,5 +1,6 @@ using System;
using System.ComponentModel.DataAnnotations;
+using Timeline.Models.Validation;
namespace Timeline.Models.Http
{
@@ -15,5 +16,11 @@ namespace Timeline.Models.Http /// Time of the post. If not set, current time will be used.
/// </summary>
public DateTime? Time { get; set; }
+
+ /// <summary>
+ /// Color of the post.
+ /// </summary>
+ [Color]
+ public string? Color { get; set; }
}
}
|