11 lines
225 B
C#
11 lines
225 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Common;
|
|
|
|
public class VideoSourcesDto
|
|
{
|
|
[JsonProperty("720")] public string _720 { get; set; } = "";
|
|
|
|
[JsonProperty("240")] public string _240 { get; set; } = "";
|
|
}
|