added exceptron log target.

This commit is contained in:
kay.one 2013-06-05 21:33:16 -07:00
parent e37f413e19
commit 5ea794939c
26 changed files with 3113 additions and 0 deletions

View file

@ -0,0 +1,21 @@
//http://fastjson.codeplex.com/
//http://fastjson.codeplex.com/license
using System;
using System.Collections.Generic;
namespace Exceptron.Client.fastJSON
{
internal class Getters
{
public string Name;
public JSON.GenericGetter Getter;
public Type propertyType;
}
internal class DatasetSchema
{
public List<string> Info { get; set; }
public string Name { get; set; }
}
}