using System; using System.Collections.Generic; namespace Newtonsoft.Json.Tests.TestObjects { public class Car { // included in JSON public string Model { get; set; } public DateTime Year { get; set; } public List Features { get; set; } // ignored [JsonIgnore] public DateTime LastModified { get; set; } } }