CPF/CPF.ReoGrid/Print/IPrintSession.cs

11 lines
163 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using System.Collections.Generic;
namespace CPF.ReoGrid.Print
{
internal interface IPrintSession
{
IList<Worksheet> Worksheets { get; }
}
}