// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. namespace Microsoft.AppCenter.Unity.Distribute { public enum UpdateTrack { /// /// Releases from the public group that don't require authentication. /// Public = 1, /// /// Releases from private groups that require authentication, also contain public releases. /// Private = 2 } }