13 lines
286 B
C#
13 lines
286 B
C#
using Disco.Models.Exporting;
|
|
|
|
namespace Disco.Models.Services.Exporting
|
|
{
|
|
public interface IExportOptions
|
|
{
|
|
ExportFormat Format { get; }
|
|
string FilenamePrefix { get; }
|
|
string ExcelWorksheetName { get; }
|
|
string ExcelTableName { get; }
|
|
}
|
|
}
|