a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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; }
|
|
}
|
|
}
|