33 lines
614 B
C#
33 lines
614 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Big.Lito.Data.Enum
|
|
{
|
|
using System.ComponentModel;
|
|
|
|
/// <summary>
|
|
/// Enumerator for resolution
|
|
/// </summary>
|
|
public enum Resolution
|
|
{
|
|
/// <summary>
|
|
/// Resolution - 1024
|
|
/// </summary>
|
|
[Description("1024")]
|
|
R1024 = 1,
|
|
|
|
/// <summary>
|
|
/// Resolution - 2048
|
|
/// </summary>
|
|
[Description("2048")]
|
|
R2048,
|
|
|
|
/// <summary>
|
|
/// Resolution - 4096
|
|
/// </summary>
|
|
[Description("4096")]
|
|
R4096,
|
|
}
|
|
}
|