mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-27 16:49:56 +00:00
17 lines
382 B
C#
17 lines
382 B
C#
namespace SabreTools.Serialization.Interfaces
|
|
{
|
|
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
|
|
}
|
|
} |