using System.Text;
namespace SabreTools.Wrappers
{
///
/// Marks a wrapper as being able to print model information
///
public interface IPrintable
{
#if NETCOREAPP
///
/// Export the item information as JSON
///
public string ExportJSON();
#endif
///
/// Print information associated with a model
///
/// StringBuilder to append information to
public void PrintInformation(StringBuilder builder);
}
}