ICustomPoster.cs 230 B

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