Updated ET driver

This commit is contained in:
Keivan Beigi
2012-05-06 09:17:55 -07:00
parent 7f321c500b
commit 109904ccc8
17 changed files with 4 additions and 6 deletions
@@ -0,0 +1,21 @@
//http://fastjson.codeplex.com/
using System;
using System.Collections.Generic;
using Exceptron.Driver.fastJSON;
namespace Exceptron.Driver.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; }
}
}