furkandeveloper/EasyProfiler

View on GitHub
src/EasyProfiler.Core/Entities/Profiler.cs

Summary

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

namespace EasyProfiler.Core.Entities
{
    /// <summary>
    /// Profiler entity.
    /// </summary>
    public class Profiler : BaseEntity
    {
        public string Query { get; set; }

        public long Duration { get; set; }

        public string RequestUrl { get; set; } = "/";

        public QueryType QueryType { get; set; }
    }
}