IShellColumns.cs 145 B

123456789
  1. using InABox.Core;
  2. namespace InABox.Mobile
  3. {
  4. public interface IShellColumns<TEntity>
  5. {
  6. Columns<TEntity> Columns { get; }
  7. }
  8. }