I'm considering creating an interface and applying it to all objects in a certain namespace.
Scenario in which I would use this: I want to create a generic handler of those objects, and I'd like to enforce the generic parameter to only accept types that implement this particular interface.
Is this a bad design, or are blank interfaces acceptable?