11 lines
243 B
C#
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; }
|
|
}
|
|
}
|