furkandeveloper/EasyProfiler

View on GitHub
src/EasyProfiler.Core/Helpers/Responses/SlowestEndpointResponseModel.cs

Summary

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

namespace EasyProfiler.Core.Helpers.Responses
{
    public class SlowestEndpointResponseModel
    {
        public string RequestUrl { get; set; }

        public int Count { get; set; }

        public TimeSpan AvarageDurationTime { get; set; }
    }
}