12 lines
305 B
C#
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>();
|
|
}
|
|
} |