11 lines
163 B
C#
11 lines
163 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CPF.ReoGrid.Print
|
|
{
|
|
internal interface IPrintSession
|
|
{
|
|
IList<Worksheet> Worksheets { get; }
|
|
}
|
|
}
|