First idea of ResultModel

This commit is contained in:
Roland Fieger
2021-08-28 15:40:03 +02:00
parent 2de05c3856
commit 3b5ae86ce5
21 changed files with 139 additions and 187 deletions

View File

@@ -6,6 +6,7 @@ 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>();
}
}