12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
|
|
using Prism.Modularity;
|
||
|
|
// ReSharper disable CheckNamespace
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface IExportModule : IModule
|
||
|
|
{
|
||
|
|
void StartSession();
|
||
|
|
bool SessionStarted { get; }
|
||
|
|
}
|
||
|
|
}
|