morrisjdev/FileContextCore

View on GitHub
FileContextCore/ValueGeneration/Internal/IFileContextIntegerValueGenerator.cs

Summary

Maintainability
A
0 mins
Test Coverage
// Copyright (c) morrisjdev. All rights reserved.
// Original copyright (c) .NET Foundation. All rights reserved.
// Modified version by morrisjdev
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace FileContextCore.ValueGeneration.Internal
{

    public interface IFileContextIntegerValueGenerator
    {
    
        void Bump(object[] row);
    }
}