ICustomPoster.cs 252 B

12345678910
  1. using InABox.Core;
  2. namespace InABox.Poster.Custom
  3. {
  4. [Caption("Custom")]
  5. public interface ICustomPoster<TEntity> : IPoster<TEntity, CustomPosterSettings>
  6. where TEntity : Entity, IPostable, IRemotable, IPersistent, new()
  7. {
  8. }
  9. }