10 lines
198 B
C#
10 lines
198 B
C#
using System.Collections.Generic;
|
|
|
|
namespace StructureHelperCommon.Models.Tables
|
|
{
|
|
public interface IShTableRow<T>
|
|
{
|
|
List<T> Elements { get; }
|
|
int RowSize { get; }
|
|
}
|
|
} |