using System.Collections; using System.Collections.Generic; using UnityEngine; namespace XRTool.Util { public class DataInfo { private string priKey; private string path; private string version; public string PriKey { get => priKey; set => priKey = value; } public string Path { get => path; set => path = value; } public string Version { get => version; set => version = value; } } }