1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-31 11:32:07 +00:00
Sonarr/src/NzbDrone.Common/Http/HttpFormData.cs

11 lines
259 B
C#
Raw Normal View History

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