Files
jellyfin-jellyfin-1/MediaBrowser.Model/Progress/TaskProgress.cs

20 lines
546 B
C#
Raw Normal View History

2012-07-30 00:06:05 -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
}
}