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

22 lines
442 B
C#

namespace Shared.Models.Online.KinoPub
{
public struct SearchItem
{
public int id { get; set; }
public string type { get; set; }
public string title { get; set; }
public string voice { get; set; }
public long? kinopoisk { get; set; }
public long? imdb { get; set; }
public int year { get; set; }
public Dictionary<string, string> posters { get; set; }
}
}