ISpecificGrid.cs 726 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. namespace InABox.DynamicGrid
  6. {
  7. /// <summary>
  8. /// Flags that a dynamic grid is specific to a certain use case and should not be selected by FindDynamicGrid.
  9. /// </summary>
  10. public interface ISpecificGrid
  11. {
  12. }
  13. /// <summary>
  14. /// Flags that a dynamic grid should always be picked as a default. If there is no grid of the required type with this flag,
  15. /// then FindDynamicGrid picks any grid without <see cref="ISpecificGrid"/>. If this does not exist either, a default instance
  16. /// of the DynamicGrid is instantiated.
  17. /// </summary>
  18. public interface IDefaultGrid
  19. {
  20. }
  21. }