Files
TxSearchApi/Datamodels/SearchModels/TableModel.cs
2021-08-28 15:40:03 +02:00

12 lines
305 B
C#

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>();
}
}