19 lines
500 B
C#
Raw Permalink Normal View History

2021-11-12 16:21:13 +08:00
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
namespace Microsoft.AppCenter.Unity.Distribute
{
public enum UpdateTrack
{
/// <summary>
/// Releases from the public group that don't require authentication.
/// </summary>
Public = 1,
/// <summary>
/// Releases from private groups that require authentication, also contain public releases.
/// </summary>
Private = 2
}
}