21 lines
530 B
Plaintext
21 lines
530 B
Plaintext
using DTS.Common.Converters;
|
|
using System.ComponentModel;
|
|
|
|
namespace DTS.Common.Enums.Viewer.Reports
|
|
{
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
|
public enum WindowWidth
|
|
{
|
|
[Description("512")]
|
|
FiveTwelve = 512,
|
|
[Description("1024")]
|
|
TenTwentyFour = 1024,
|
|
[Description("2048")]
|
|
TwentyFortyEight = 2048,
|
|
[Description("4096")]
|
|
FortyNinetySix = 4096,
|
|
[Description("8192")]
|
|
EightyOneNinetyTwo = 8192,
|
|
}
|
|
}
|