13 lines
263 B
C#
13 lines
263 B
C#
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;
|
|
}
|
|
}
|