From 5c7a8d073456849f9cdcdb56b5874278f3098aa0 Mon Sep 17 00:00:00 2001 From: Demis Bellot Date: Fri, 22 Mar 2024 16:44:42 +0800 Subject: [PATCH] Also add UpVotes to comments --- MyApp.ServiceModel/Posts.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MyApp.ServiceModel/Posts.cs b/MyApp.ServiceModel/Posts.cs index b43fbca..6406b38 100644 --- a/MyApp.ServiceModel/Posts.cs +++ b/MyApp.ServiceModel/Posts.cs @@ -128,6 +128,7 @@ public class Comment public string Id { get; set; } public string Body { get; set; } public string CreatedBy { get; set; } + public int? UpVotes { get; set; } public DateTime CreatedDate { get; set; } }