Mercurial > pub > bltoolkit
annotate Source/ServiceModel/LinqServiceResult.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
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 } |