1 changed files with 18 additions and 0 deletions
@ -0,0 +1,18 @@
@@ -0,0 +1,18 @@
|
||||
public interface ITableData |
||||
{ |
||||
/// <summary> |
||||
/// Get the data of the table. |
||||
/// </summary> |
||||
/// <returns></returns> |
||||
string[][] GetTableData(); |
||||
/// <summary> |
||||
/// Get the header of the table. |
||||
/// </summary> |
||||
/// <returns></returns> |
||||
string[] GetTableHeader(); |
||||
} |
||||
|
||||
public interface ITableRowData |
||||
{ |
||||
string[] GetRowData(); |
||||
} |
Loading…
Reference in new issue