using System;
using System.Collections.Generic;
using System.Text;
namespace Big.Lito.Data.Enum
{
using System.ComponentModel;
///
/// Enumerator for resolution
///
public enum Resolution
{
///
/// Resolution - 1024
///
[Description("1024")]
R1024 = 1,
///
/// Resolution - 2048
///
[Description("2048")]
R2048,
///
/// Resolution - 4096
///
[Description("4096")]
R4096,
}
}