first things
This commit is contained in:
12
Datamodels/SearchModels/TableModel.cs
Normal file
12
Datamodels/SearchModels/TableModel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Datamodels.SearchModels
|
||||
{
|
||||
public sealed class TableModel
|
||||
{
|
||||
public string TableName { get; set; }
|
||||
public string TableAlias { get; set; }
|
||||
public List<FieldModel> Fields { get; set; } = new List<FieldModel>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user