added new image params & GameSystem constants

This commit is contained in:
Luke Pulverenti
2013-10-02 11:32:11 -04:00
parent f87454336e
commit 7dae0069d6
16 changed files with 155 additions and 54 deletions

View File

@@ -35,9 +35,9 @@ namespace MediaBrowser.Controller.Drawing
public ImageOutputFormat OutputFormat { get; set; }
public ImageOverlay? Indicator { get; set; }
public bool AddPlayedIndicator { get; set; }
public int PercentPlayed { get; set; }
public int? PercentPlayed { get; set; }
public string BackgroundColor { get; set; }
}

View File

@@ -1,4 +1,5 @@

using MediaBrowser.Model.LiveTv;
namespace MediaBrowser.Controller.LiveTv
{
/// <summary>
@@ -17,5 +18,11 @@ namespace MediaBrowser.Controller.LiveTv
/// </summary>
/// <value>The name of the service.</value>
public string ServiceName { get; set; }
/// <summary>
/// Gets or sets the type of the channel.
/// </summary>
/// <value>The type of the channel.</value>
public ChannelType ChannelType { get; set; }
}
}