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

Shortie.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 754b5535b85097e542c448299a41418c000e2c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace Newtonsoft.Json.Tests.TestObjects
{
  public class Shortie
  {
    public string Original { get; set; }
    public string Shortened { get; set; }
    public string Short { get; set; }
    public ShortieException Error { get; set; }
  }

  public class ShortieException
  {
    public int Code { get; set; }
    public string ErrorMessage { get; set; }
  }
}