namespace MediaBrowser.Model.Progress { /// /// Represents a generic progress class that can be used with IProgress /// public class TaskProgress { /// /// Gets or sets the current completion percentage /// public decimal PercentComplete { get; set; } /// /// Gets or sets a description of the actions currently executing /// public string Description { get; set; } } }