Removed progress value from startup

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-17 14:47:51 -04:00
parent fb88e4d5fc
commit fe427bc7f4
8 changed files with 19 additions and 16 deletions

View File

@@ -6,14 +6,14 @@ namespace MediaBrowser.Model.Progress
/// </summary>
public class TaskProgress
{
/// <summary>
/// Gets or sets the current completion percentage
/// </summary>
public decimal PercentComplete { get; set; }
/// <summary>
/// Gets or sets a description of the actions currently executing
/// </summary>
public string Description { get; set; }
/// <summary>
/// Gets or sets the current completion percentage
/// </summary>
public decimal? PercentComplete { get; set; }
}
}