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: d8c267e337a0683f20ed167188f9beaf46619f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Newtonsoft.Json.Tests.TestObjects
{
  public class WagePerson : Person
  {
    [JsonProperty]
    public decimal HourlyWage { get; set; }
  }
}