Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. namespace lib.ioc.di
  3. {
  4.     /// <summary>
  5.     /// Interface for all pages
  6.     /// </summary>
  7.     public interface IPage
  8.     {
  9.  
  10.         //just a simple property for testing
  11.         IResource Resource { get; set; }
  12.     }
  13. }
  14.