lampac-ukraine/Uaflix/Models/SearchResult.cs
baliasnyifeliks 2249a36c96 Fix
2026-01-31 21:30:55 +02:00

13 lines
284 B
C#

using System;
using System.Collections.Generic;
namespace Uaflix.Models
{
public class SearchResult
{
public string Title { get; set; }
public string Url { get; set; }
public int Year { get; set; }
public string PosterUrl { get; set; }
}
}