forked from sim0n00ps/OF-DL
11 lines
224 B
C#
11 lines
224 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Common;
|
|
|
|
public class ManifestDto
|
|
{
|
|
[JsonProperty("hls")] public string Hls { get; set; } = "";
|
|
|
|
[JsonProperty("dash")] public string Dash { get; set; } = "";
|
|
}
|