kreta/Framework/Entities/EntityConnectionModel.cs
2024-03-13 00:33:46 +01:00

11 lines
243 B
C#

namespace Kreta.Framework.Entities
{
public class EntityConnectionModel
{
public string TargetTableName { get; set; }
public string TargetColumnName { get; set; }
public int RowsCount { get; set; }
}
}