ListShell.cs 246 B

1234567891011
  1. using InABox.Core;
  2. namespace InABox.Mobile
  3. {
  4. public abstract class ListShell<TParent, TEntity> : Shell<TParent, TEntity>
  5. where TParent : IListModel
  6. where TEntity : Entity, IRemotable, IPersistent, new()
  7. {
  8. }
  9. }