using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Tables
{
public enum CellRole
{
Title,
Header,
Regular
}
///
/// Generic interface for cell of table
///
///
public interface IShTableCell
{
///
/// Value of cell
///
T Value { get; set; }
///
/// Number of cell, joined with this one
///
int ColumnSpan { get; set; }
///
/// Role of the cell in table
///
CellRole Role { get; set; }
}
}