20 lines
385 B
C#
20 lines
385 B
C#
namespace Shared.Models.Online.Lumex
|
|
{
|
|
public struct Datum
|
|
{
|
|
public long kp_id { get; set; }
|
|
|
|
public string imdb_id { get; set; }
|
|
|
|
public string title { get; set; }
|
|
|
|
public string orig_title { get; set; }
|
|
|
|
public string add { get; set; }
|
|
|
|
public long id { get; set; }
|
|
|
|
public string content_type { get; set; }
|
|
}
|
|
}
|