furkandeveloper/EasyProfiler

View on GitHub
src/EasyProfiler.Core/Statics/Values.cs

Summary

Maintainability
A
0 mins
Test Coverage
using EasyProfiler.Core.Entities;
using System;
using System.Collections.Generic;
using System.Text;

namespace EasyProfiler.Core.Statics
{
    public static class Values
    {
        public static List<Profiler> Profilers { get; } = new List<Profiler>();
    }
}