mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
8 lines
139 B
C#
8 lines
139 B
C#
namespace AssetRipper.GUI.Web.Paths;
|
|
|
|
public interface IPath<TSelf>
|
|
{
|
|
string ToJson();
|
|
static abstract TSelf FromJson(string json);
|
|
}
|