PageRenderTime 45ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/View/IView.cs

https://github.com/cmath/SimpleLoginManager
C# | 13 lines | 12 code | 1 blank | 0 comment | 0 complexity | c209badb05c8072deb4e47bd10814583 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.Helpers
  7. {
  8. public interface IView
  9. {
  10. object DataContext { get; set; }
  11. }
  12. }