using Newtonsoft.Json; namespace Kreta.Client.Jira.Model.Request { public class CommentRequest { [JsonProperty("body")] public string Body { get; set; } [JsonProperty("public")] internal bool IsPublic => true; } }