Mercurial > pub > bltoolkit
annotate Source/ServiceModel/LinqServiceResult.cs @ 4:f757da6161a1
!bug 100 + 2h fixed gregression
author | cin |
---|---|
date | Sun, 24 Aug 2014 17:57:42 +0400 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 using System.Collections.Generic; | |
3 | |
4 namespace BLToolkit.ServiceModel | |
5 { | |
6 public class LinqServiceResult | |
7 { | |
8 public int FieldCount { get; set; } | |
9 public int RowCount { get; set; } | |
10 public Guid QueryID { get; set; } | |
11 public string[] FieldNames { get; set; } | |
12 public Type[] FieldTypes { get; set; } | |
13 public Type[] VaryingTypes { get; set; } | |
14 public List<string[]> Data { get; set; } | |
15 } | |
16 } |