aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models
diff options
context:
space:
mode:
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>