lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

14 lines
392 B
C#

namespace Shared.Models.Online.VkMovie
{
public class Video
{
public long id { get; set; }
public long owner_id { get; set; }
public string title { get; set; }
public string description { get; set; }
public long duration { get; set; }
public VideoFiles files { get; set; }
public VideoSubtitle[] subtitles { get; set; }
}
}