RSND/RSND/Core/DbInternals/Table.cs

7 lines
108 B
C#
Raw Normal View History

2022-06-01 22:24:42 +00:00
namespace RSND.Core.DbInternals;
public class Table
{
public string? Name;
public Row[]? Rows;
}