1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-18 21:29:46 +00:00
Sonarr/src/NzbDrone.Common/Http/HttpFormData.cs
2016-12-23 13:45:24 -08:00

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; }
}
}