10 lines
261 B
C#
10 lines
261 B
C#
namespace Kreta.Client.Jira.Model.Request
|
|
{
|
|
public class File
|
|
{
|
|
public string Name { get; set; }
|
|
public string FileName { get; set; }
|
|
public byte[] Content { get; set; }
|
|
public string ContentType { get; set; }
|
|
}
|
|
}
|