mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-21 08:15:12 +00:00
20 lines
465 B
C#
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
|
|
}
|
|
} |