12 lines
300 B
C#
12 lines
300 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Kreta.Client.Jira.Model.Response
|
|
{
|
|
public class Attachment
|
|
{
|
|
[JsonProperty("temporaryAttachmentId")]
|
|
public string TemporaryAttachmentId { get; set; }
|
|
[JsonProperty("fileName")]
|
|
public string FileName { get; set; }
|
|
}
|
|
}
|