Browse Source

fixed GenerateTools Interface

master
jkpete 3 months ago
parent
commit
cf6eef4dd5
  1. 18
      addons/EGFramework/Module/GenerateTools/DataInterface/ITableData.cs

18
addons/EGFramework/Module/GenerateTools/DataInterface/ITableData.cs

@ -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…
Cancel
Save