// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Microsoft.MixedReality.Toolkit.CameraSystem { /// /// Base class used to derive custom camera settings profiles. /// [Serializable] public class BaseCameraSettingsProfile : BaseMixedRealityProfile { // This class is intentionally blank. It exists for future expansion of common functionality. } }