aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models
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
commit391f82e85d4a31f4a5022a24062083f00d16b3c8 (patch)
tree68730bb36a517d79b9519e51130955b37ba9cefd /BackEnd/Timeline/Models
parentc2c29da545eed33a96c06a41ff73e5ae707bb3f6 (diff)
downloadtimeline-391f82e85d4a31f4a5022a24062083f00d16b3c8.tar.gz
timeline-391f82e85d4a31f4a5022a24062083f00d16b3c8.tar.bz2
timeline-391f82e85d4a31f4a5022a24062083f00d16b3c8.zip
...
Diffstat (limited to 'BackEnd/Timeline/Models')
-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>