mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-08 18:06:41 +00:00
21 lines
461 B
C#
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
|
|
}
|
|
}
|