forked from sim0n00ps/OF-DL
17 lines
439 B
C#
17 lines
439 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models;
|
|
|
|
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; } = "";
|
|
}
|