init
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user