From 98e17766b203734a1817eed94338e2d25f4395f7 Mon Sep 17 00:00:00 2001 From: transtrike Date: Sat, 13 Feb 2021 16:20:18 +0200 Subject: Project Restructure P.1 --- .../Comment/CreateCommentServiceModel.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/Services/DevHive.Services.Models/Comment/CreateCommentServiceModel.cs (limited to 'src/Services/DevHive.Services.Models/Comment/CreateCommentServiceModel.cs') diff --git a/src/Services/DevHive.Services.Models/Comment/CreateCommentServiceModel.cs b/src/Services/DevHive.Services.Models/Comment/CreateCommentServiceModel.cs new file mode 100644 index 0000000..30e919b --- /dev/null +++ b/src/Services/DevHive.Services.Models/Comment/CreateCommentServiceModel.cs @@ -0,0 +1,13 @@ +using System; + +namespace DevHive.Services.Models.Comment +{ + public class CreateCommentServiceModel + { + public Guid PostId { get; set; } + + public Guid CreatorId { get; set; } + + public string Message { get; set; } + } +} -- cgit v1.2.3