PageRenderTime 43ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/View/IShellView.cs

https://github.com/cmath/SimpleLoginManager
C# | 13 lines | 12 code | 1 blank | 0 comment | 0 complexity | 7ade1d35d6aef664b36f9400588e3f5c MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Login.ViewModel
  6. {
  7. interface IShellView
  8. {
  9. object DataContext { get; set; }
  10. void Show ( );
  11. }
  12. }