DataInfo.cs 448 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace XRTool.Util
  5. {
  6. public class DataInfo
  7. {
  8. private string priKey;
  9. private string path;
  10. private string version;
  11. public string PriKey { get => priKey; set => priKey = value; }
  12. public string Path { get => path; set => path = value; }
  13. public string Version { get => version; set => version = value; }
  14. }
  15. }