IRtInstance.cs 557 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Media;
  8. namespace MECF.Framework.RT.Core.Applications
  9. {
  10. public interface IRtInstance
  11. {
  12. string SystemName { get; }
  13. string DatabaseName { get; }
  14. bool EnableNotifyIcon { get; }
  15. bool KeepRunningAfterUnknownException { get; }
  16. ImageSource TrayIcon { get; }
  17. bool DefaultShowBackendWindow { get; }
  18. IRtLoader Loader { get; }
  19. }
  20. }