Newer
Older
ClosedXML / ClosedXML / Excel / Charts / IXLCharts.cs
@Amir Amir on 9 Sep 2016 177 bytes Project hierarchy cleanup
using System.Collections.Generic;

namespace ClosedXML.Excel
{
    public interface IXLCharts: IEnumerable<IXLChart>
    {
        void Add(IXLChart chart);
    }
}