aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Post/UpdatePostWebModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Models/Post/UpdatePostWebModel.cs')
-rw-r--r--src/DevHive.Web/Models/Post/UpdatePostWebModel.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/DevHive.Web/Models/Post/UpdatePostWebModel.cs b/src/DevHive.Web/Models/Post/UpdatePostWebModel.cs
deleted file mode 100644
index a0c9b61..0000000
--- a/src/DevHive.Web/Models/Post/UpdatePostWebModel.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations;
-using System.Diagnostics.CodeAnalysis;
-using Microsoft.AspNetCore.Http;
-
-namespace DevHive.Web.Models.Post
-{
- public class UpdatePostWebModel
- {
- [Required]
- [NotNull]
- public Guid PostId { get; set; }
-
- [NotNull]
- [Required]
- public string NewMessage { get; set; }
-
- public List<IFormFile> Files { get; set; } = new();
- }
-}