using System;
namespace Repository.Entiies
{
    public class StatisticsLog
    {
        public Guid Id { get; set; }
        public DateTime Timestamp { get; set; }
        public TraceState TraceState { get; set; }
        public RequstType RequstType { get; set; }
        public int RequestCode { get; set; }
    }
    public enum TraceState
    {
        PreTraceNG,
        TimeOutNG,
        GetOK,
        GetNG,
        PostOK,
        PostNG

    }
    public enum RequstType
    {
        Get,
        Post,
    }
}