11 lines
232 B
C#
11 lines
232 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Common;
|
|
|
|
public class SignatureDto
|
|
{
|
|
[JsonProperty("hls")] public HlsDto Hls { get; set; } = new();
|
|
|
|
[JsonProperty("dash")] public DashDto Dash { get; set; } = new();
|
|
}
|