main
 1using System.Drawing;
 2
 3namespace MoMoney.Presentation.Model.Excel
 4{
 5    public interface ICellInterior
 6    {
 7        Color Color { get; set; }
 8        int FontSize { get; set; }
 9    }
10}