forked from sim0n00ps/OF-DL
14 lines
381 B
C#
14 lines
381 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Common;
|
|
|
|
public class HlsDto
|
|
{
|
|
[JsonProperty("CloudFront-Policy")] public string CloudFrontPolicy { get; set; } = "";
|
|
|
|
[JsonProperty("CloudFront-Signature")] public string CloudFrontSignature { get; set; } = "";
|
|
|
|
[JsonProperty("CloudFront-Key-Pair-Id")]
|
|
public string CloudFrontKeyPairId { get; set; } = "";
|
|
}
|