namespace Shared.Models.Online.VeoVeo { public struct Movie { public long id { get; set; } public int year { get; set; } public long? kinopoiskId { get; set; } public string imdbId { get; set; } public string originalTitle { get; set; } public string title { get; set; } } }