mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-06 15:53:41 +01:00
Added ContentSummary to be able to describe the ContentData in a human readable form. (Useful for JsonRpc and FormData).
14 lines
327 B
C#
14 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
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; }
|
|
}
|
|
}
|