17 lines
348 B
C#
17 lines
348 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; } = "";
|
|
}
|
|
}
|