Anapher/Strive

View on GitHub
src/Services/ConferenceManagement/Strive.Core/Interfaces/Gateways/OptimisticUpdateResult.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace Strive.Core.Interfaces.Gateways
{
    public enum OptimisticUpdateResult
    {
        Ok,
        ConcurrencyException,
        DeletedException,
    }
}