Sonarr/NzbDrone.Core/Model/Xbmc/IconType.cs

15 lines
228 B
C#

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
}
}