12 lines
301 B
C#
12 lines
301 B
C#
namespace Shared.Models.Online.VkMovie
|
|
{
|
|
public class VideoSubtitle
|
|
{
|
|
public string lang { get; set; }
|
|
public string title { get; set; }
|
|
public bool is_auto { get; set; }
|
|
public string url { get; set; }
|
|
public string manifest_name { get; set; }
|
|
}
|
|
}
|