/Services/IShellService.cs

https://github.com/cmath/SimpleLoginManager · C# · 14 lines · 13 code · 1 blank · 0 comment · 0 complexity · ed93783756d1e0534c936abd561836d3 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Login.Services
  7. {
  8. interface IShellService
  9. {
  10. object CurrentRuleView { get; set; }
  11. object ShellView { get; set; }
  12. }
  13. }