#if ENABLE_CLOUD_SERVICES_ANALYTICS || UNITY_2023_2_OR_NEWER using System; using UnityEngine; namespace UnityEditor.XR.Interaction.Toolkit.Analytics { /// /// Single entry of an installed sample name and version. /// [Serializable] struct SampleVersionData { /// /// The name of the package, such as "Starter Assets". /// [SerializeField] public string sample; /// /// The package version of the sample that it originated from, such as "3.2.0". /// This may be older than the currently installed package version. /// [SerializeField] public string version; } } #endif