Korero – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | using System.Collections.Generic; |
2 | |||
3 | namespace Korero.Database |
||
4 | { |
||
5 | public class DatabaseResults |
||
6 | { |
||
7 | #region Public Enums, Properties and Fields |
||
8 | |||
9 | public int Count { get; set; } |
||
10 | |||
11 | public Dictionary<string, List<string>> Columns { get; set; } |
||
12 | |||
13 | #endregion |
||
14 | |||
15 | #region Constructors, Destructors and Finalizers |
||
16 | |||
17 | public DatabaseResults() |
||
18 | { |
||
19 | Columns = new Dictionary<string, List<string>>(); |
||
20 | } |
||
21 | |||
22 | #endregion |
||
23 | } |
||
24 | } |