mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
20 lines
304 B
C#
20 lines
304 B
C#
using System.ComponentModel;
|
|
|
|
namespace Example_Ambilight_full.TakeAsIs.Model
|
|
{
|
|
public enum SmoothMode
|
|
{
|
|
[Description("None")]
|
|
None,
|
|
|
|
[Description("Low")]
|
|
Low,
|
|
|
|
[Description("Medium")]
|
|
Medium,
|
|
|
|
[Description("High")]
|
|
High
|
|
}
|
|
}
|