Files
coverlet/src/coverlet.core/Enums/ThresholdStatistic.cs
T
Amaury Levé 03ff455578 Add editorconfig with tuned configuration (#1300)
Add editorconfig with tuned configuration
2022-02-14 09:14:38 +01:00

12 lines
270 B
C#

// Copyright (c) Toni Solarin-Sodara
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Coverlet.Core.Enums
{
internal enum ThresholdStatistic
{
Minimum,
Average,
Total
}
}