mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-31 11:32:07 +00:00
11 lines
259 B
C#
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; }
|
||
|
}
|
||
|
}
|