namespace MfGames.Nitride.Contents; /// /// An interface to indicates an object can be converted into a text /// content directly. /// public interface ITextContentConvertable { /// /// Convert the given object into a text content. /// /// ITextContent ToTextContent(); }