Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using lib.i18n;
  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.         I18NSupport I18NHelper { get; set; }
  14.  
  15.         // I18N function
  16.         string _(string text);
  17.     }
  18. }
  19.