mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-18 21:29:46 +00:00
10 lines
259 B
C#
10 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; }
|
|
}
|
|
}
|