9 lines
207 B
C#
9 lines
207 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Client.Jira.Model.Response
|
|
{
|
|
public class TemporaryAttachmentsModel
|
|
{
|
|
public List<Attachment> TemporaryAttachments { get; set; }
|
|
}
|
|
}
|