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