namespace Terminal.Gui { /// /// Delegates of this type are used to fetch string representations of user's model objects /// /// The object that is being rendered /// public delegate string AspectGetterDelegate (T toRender) where T : class; }