// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema { /// /// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/glTFChildOfRootProperty.schema.json /// [Serializable] public class GltfChildOfRootProperty : GltfProperty { /// /// The user-defined name of this object. /// This is not necessarily unique, e.g., an accessor and a buffer could have the same name, /// or two accessors could even have the same name. /// public string name; } }