aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models/Http/HttpTimelinePostPatchRequest.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-02-08 21:24:42 +0800
committercrupest <crupest@outlook.com>2021-02-08 21:24:42 +0800
commit45b683d582d4a7760ffd69c4cd47841ce0545119 (patch)
tree511e1ce84fa39a8fa4b122968ee836aa37d97678 /BackEnd/Timeline/Models/Http/HttpTimelinePostPatchRequest.cs
parent8b7b570b008c9e9c8c0660c9650112d435269924 (diff)
downloadtimeline-45b683d582d4a7760ffd69c4cd47841ce0545119.tar.gz
timeline-45b683d582d4a7760ffd69c4cd47841ce0545119.tar.bz2
timeline-45b683d582d4a7760ffd69c4cd47841ce0545119.zip
...
Diffstat (limited to 'BackEnd/Timeline/Models/Http/HttpTimelinePostPatchRequest.cs')
-rw-r--r--BackEnd/Timeline/Models/Http/HttpTimelinePostPatchRequest.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/BackEnd/Timeline/Models/Http/HttpTimelinePostPatchRequest.cs b/BackEnd/Timeline/Models/Http/HttpTimelinePostPatchRequest.cs
index 3dface29..2c6edf66 100644
--- a/BackEnd/Timeline/Models/Http/HttpTimelinePostPatchRequest.cs
+++ b/BackEnd/Timeline/Models/Http/HttpTimelinePostPatchRequest.cs
@@ -3,26 +3,6 @@ using Timeline.Models.Validation;
namespace Timeline.Models.Http
{
- /// <summary>
- /// The model of changing post content.
- /// </summary>
- public class HttpTimelinePostPatchRequestContent
- {
- /// <summary>
- /// The new type of the post. If null, old type is used. This field can't be used alone. Use it with corresponding fields to change post content.
- /// </summary>
- [TimelinePostContentType]
- public string? Type { get; set; }
- /// <summary>
- /// The new text. Null for not change.
- /// </summary>
- public string? Text { get; set; }
- /// <summary>
- /// The new data. Null for not change.
- /// </summary>
- public string? Data { get; set; }
- }
-
public class HttpTimelinePostPatchRequest
{
/// <summary>