Files
SabreTools.Serialization/SabreTools.Serialization/Wrappers/IWrapper.cs
2025-09-26 15:20:49 -04:00

21 lines
461 B
C#

namespace SabreTools.Serialization.Wrappers
{
/// <summary>
/// Represents a wrapper around a top-level model
/// </summary>
public interface IWrapper
{
/// <summary>
/// Get a human-readable description of the wrapper
/// </summary>
string Description();
#if NETCOREAPP
/// <summary>
/// Export the item information as JSON
/// </summary>
string ExportJSON();
#endif
}
}