forked from sim0n00ps/OF-DL
18 lines
484 B
C#
18 lines
484 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models;
|
|
|
|
// ReSharper disable once InconsistentNaming
|
|
public class CDRMProjectRequest
|
|
{
|
|
[JsonProperty("pssh")] public string Pssh { get; set; } = "";
|
|
|
|
[JsonProperty("licurl")] public string LicenseUrl { get; set; } = "";
|
|
|
|
[JsonProperty("headers")] public string Headers { get; set; } = "";
|
|
|
|
[JsonProperty("cookies")] public string Cookies { get; set; } = "";
|
|
|
|
[JsonProperty("data")] public string Data { get; set; } = "";
|
|
}
|