//
// DefaultStates.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;
///
/// Default states used for contracts.
///
public enum DefaultStates
{
///
/// Contract has not been executed yet.
///
None,
///
/// The contract has requested a response, waiting for it.
///
Requested,
///
/// The response was obtained.
///
ResponseObtained
}