a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
372 B
C#
18 lines
372 B
C#
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; }
|
|
}
|
|
}
|