All files
[pithos-ms-client] / trunk / Libraries / Json40r2 / Source / Src / Newtonsoft.Json.Tests / TestObjects / Shortie.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Xml.Serialization;
6
7 namespace Newtonsoft.Json.Tests.TestObjects
8 {
9   public class Shortie
10   {
11     public string Original { get; set; }
12     public string Shortened { get; set; }
13     public string Short { get; set; }
14     public ShortieException Error { get; set; }
15   }
16
17   public class ShortieException
18   {
19     public int Code { get; set; }
20     public string ErrorMessage { get; set; }
21   }
22 }