Files
SabreTools.Serialization/SabreTools.Serialization/Interfaces/IWrapper.cs
2024-04-17 12:28:08 -04:00

20 lines
465 B
C#

namespace SabreTools.Serialization.Interfaces
{
/// <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 !NETFRAMEWORK
/// <summary>
/// Export the item information as JSON
/// </summary>
string ExportJSON();
#endif
}
}