forked from sim0n00ps/OF-DL
13 lines
298 B
C#
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; } = "";
|
|
}
|