// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Collections.Generic; namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema { public class GltfProperty { /// /// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/extension.schema.json /// public readonly Dictionary Extensions = new Dictionary(); /// /// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/extras.schema.json /// public readonly Dictionary Extras = new Dictionary(); } }