Welcome to mirror list, hosted at ThFree Co, Russian Federation.

WagePerson.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b63f244d24d42d79dd5ca930bbe51c130868ce7 (plain)
1
2
3
4
5
6
7
8
namespace Newtonsoft.Json.Tests.TestObjects
{
  public class WagePerson : Person
  {
    [JsonProperty]
    public decimal HourlyWage { get; set; }
  }
}