using System.Text;
namespace BinaryObjectScanner.Wrappers
{
public interface IWrapper
{
///
/// Get a human-readable description of the wrapper
///
string Description();
///
/// Export the item information as pretty-printed text
///
StringBuilder PrettyPrint();
#if NET6_0_OR_GREATER
///
/// Export the item information as JSON
///
string ExportJSON();
#endif
}
}