comparison Source/ServiceModel/LinqServiceResult.cs @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f990fcb411a9
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 }