Jeremy Pritts ab4c37f68b Replace Electron with a web UI and enable NativeAOT
* Resolves #1123
* Resolves #1097
* Related: #922
2023-12-13 12:25:16 -05:00

8 lines
139 B
C#

namespace AssetRipper.GUI.Web.Paths;
public interface IPath<TSelf>
{
string ToJson();
static abstract TSelf FromJson(string json);
}