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