2012-07-30 00:06:05 -04:00
|
|
|
|
|
2012-07-30 09:44:28 -04:00
|
|
|
|
namespace MediaBrowser.Model.Progress
|
2012-07-30 00:06:05 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Represents a generic progress class that can be used with IProgress
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class TaskProgress
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2012-09-17 14:47:51 -04:00
|
|
|
|
/// Gets or sets a description of the actions currently executing
|
2012-07-30 00:06:05 -04:00
|
|
|
|
/// </summary>
|
2012-09-17 14:47:51 -04:00
|
|
|
|
public string Description { get; set; }
|
2012-07-30 00:06:05 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2012-09-17 14:47:51 -04:00
|
|
|
|
/// Gets or sets the current completion percentage
|
2012-07-30 00:06:05 -04:00
|
|
|
|
/// </summary>
|
2012-09-17 14:47:51 -04:00
|
|
|
|
public decimal? PercentComplete { get; set; }
|
2012-07-30 00:06:05 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|