first commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace AddressablesTools.Catalog
|
||||
{
|
||||
internal class ClassJsonObject
|
||||
{
|
||||
public string AssemblyName { get; }
|
||||
public string ClassName { get; }
|
||||
public string JsonText { get; }
|
||||
|
||||
public ClassJsonObject(string assemblyName, string className, string jsonText)
|
||||
{
|
||||
AssemblyName = assemblyName;
|
||||
ClassName = className;
|
||||
JsonText = jsonText;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user