Radarr/src/NzbDrone.Common/Http/HttpFormData.cs

11 lines
259 B
C#

namespace NzbDrone.Common.Http
{
public class HttpFormData
{
public string Name { get; set; }
public string FileName { get; set; }
public byte[] ContentData { get; set; }
public string ContentType { get; set; }
}
}