2
0
forked from sim0n00ps/OF-DL
OF-DL/OF DL.Core/Models/OfdlApi/OFDLRequest.cs

13 lines
304 B
C#

using Newtonsoft.Json;
namespace OF_DL.Models.OfdlApi;
public class OfdlRequest
{
[JsonProperty("pssh")] public string Pssh { get; set; } = "";
[JsonProperty("licenceURL")] public string LicenseUrl { get; set; } = "";
[JsonProperty("headers")] public string Headers { get; set; } = "";
}