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: f1691ec215f2351009bd6e17e9d5127f8659bde8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;

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; }
  }
}