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