30 строки
448 B
C#
30 строки
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BenchmarkLogGenerator
|
|
{
|
|
public enum WriterType
|
|
{
|
|
EventHub,
|
|
LocalDisk,
|
|
AzureStorage
|
|
}
|
|
|
|
public enum BenchmarkDataSize
|
|
{
|
|
OneGB,
|
|
TenGB,
|
|
OneTB,
|
|
HundredTB
|
|
}
|
|
|
|
public enum Level
|
|
{
|
|
Information,
|
|
Warning,
|
|
Error,
|
|
Critical
|
|
}
|
|
}
|