16 lines
413 B
C#
16 lines
413 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Newtonsoft.Json.Tests.TestObjects
|
|||
|
{
|
|||
|
public class Movie
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
public string Classification { get; set; }
|
|||
|
public string Studio { get; set; }
|
|||
|
public DateTime? ReleaseDate { get; set; }
|
|||
|
public List<string> ReleaseCountries { get; set; }
|
|||
|
}
|
|||
|
}
|