16 lines
299 B
C#
16 lines
299 B
C#
namespace Shared.Models.Online.Collaps
|
|
{
|
|
public struct ResultSearch
|
|
{
|
|
public int id { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
public string origin_name { get; set; }
|
|
|
|
public int year { get; set; }
|
|
|
|
public string poster { get; set; }
|
|
}
|
|
}
|