Radarr/NzbDrone.Core/Model/Xbmc/ActionType.cs

13 lines
199 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace NzbDrone.Core.Model.Xbmc
{
public enum ActionType
{
ExecBuiltin = 0x01,
Button = 0x02
}
}