Files
linux-packaging-mono/external/Newtonsoft.Json/Src/Newtonsoft.Json.Tests/TestObjects/Car.cs

18 lines
372 B
C#
Raw Normal View History

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<string> Features { get; set; }
// ignored
[JsonIgnore]
public DateTime LastModified { get; set; }
}
}