//
// ContractUpdateResponse.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace NosSmooth.Core.Contracts;
///
/// A response to Contract.Update.
///
public enum ContractUpdateResponse
{
///
/// The contract is not interested in the given data.
///
NotInterested,
///
/// The contract is interested in the given data,
/// the data was used to update the contract and
/// the contract wants to stay registered.
///
Interested,
///
/// The contract is interested in the given data,
/// the data was used to update the contract and
/// the contract wants to be unregistered from the contractor.
///
InterestedAndUnregister
}