ISpecificGrid.cs 740 B

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