Concept Flow - Generic interface declaration
Start
Declare generic interface with <T>
Use <T> as type placeholder inside interface
Create object implementing interface with specific type
Access properties with concrete type
End
This flow shows how a generic interface is declared with a type placeholder and then used with a specific type.