// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
namespace Microsoft.AppCenter.Unity.Distribute
{
///
/// User update action.
///
public enum UpdateAction
{
///
/// Action to trigger the download of the release.
///
Update,
///
/// Action to postpone optional updates for 1 day.
///
Postpone
}
}