mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Xbmc Refactored
This commit is contained in:
parent
76fb548ccd
commit
b99e62c5ba
38 changed files with 1501 additions and 1521 deletions
|
@ -1,12 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model.Xbmc
|
||||
{
|
||||
public enum ActionType
|
||||
{
|
||||
ExecBuiltin = 0x01,
|
||||
Button = 0x02
|
||||
}
|
||||
}
|
|
@ -15,5 +15,11 @@ namespace NzbDrone.Core.Model.Xbmc
|
|||
{
|
||||
public int PlayerId { get; set; }
|
||||
public string Type { get; set; }
|
||||
|
||||
public ActivePlayer(int playerId, string type)
|
||||
{
|
||||
PlayerId = playerId;
|
||||
Type = type;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model.Xbmc
|
||||
{
|
||||
public enum IconType
|
||||
{
|
||||
None = 0x00,
|
||||
Jpeg = 0x01,
|
||||
Png = 0x02,
|
||||
Gif = 0x03
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue