aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Post/CreatePostServiceModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Services/Models/Post/CreatePostServiceModel.cs')
-rw-r--r--src/DevHive.Services/Models/Post/CreatePostServiceModel.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/DevHive.Services/Models/Post/CreatePostServiceModel.cs b/src/DevHive.Services/Models/Post/CreatePostServiceModel.cs
deleted file mode 100644
index 304eb90..0000000
--- a/src/DevHive.Services/Models/Post/CreatePostServiceModel.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-using System.Collections.Generic;
-using Microsoft.AspNetCore.Http;
-
-namespace DevHive.Services.Models.Post
-{
- public class CreatePostServiceModel
- {
- public Guid CreatorId { get; set; }
-
- public string Message { get; set; }
-
- public List<IFormFile> Files { get; set; }
- }
-}