/View/IShellView.cs
https://github.com/cmath/SimpleLoginManager · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · 7ade1d35d6aef664b36f9400588e3f5c MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Login.ViewModel
- {
- interface IShellView
- {
- object DataContext { get; set; }
- void Show ( );
- }
- }