using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Tables
{
///
public class ShTableCell : IShTableCell
{
///
public T Value { get; set; }
///
public int ColumnSpan { get; set; }
///
public CellRole Role { get; set; }
public ShTableCell()
{
Role = CellRole.Regular;
ColumnSpan = 1;
}
}
}