18 lines
343 B
C#
18 lines
343 B
C#
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; }
|
|
}
|
|
}
|