8 lines
108 B
C#
8 lines
108 B
C#
|
namespace Mesdb.Cli.Schema;
|
||
|
|
||
|
public class Table
|
||
|
{
|
||
|
|
||
|
public required string Name { get; init; }
|
||
|
|
||
|
}
|