OF-DL/OF DL/Entities/OFDLRequest.cs

13 lines
298 B
C#

using Newtonsoft.Json;
namespace OF_DL.Entities;
public class OFDLRequest
{
[JsonProperty("pssh")] public string PSSH { get; set; } = "";
[JsonProperty("licenceURL")] public string LicenseURL { get; set; } = "";
[JsonProperty("headers")] public string Headers { get; set; } = "";
}