mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
more notification updates
This commit is contained in:
parent
0d139f9c21
commit
80d47e611c
10 changed files with 145 additions and 93 deletions
|
@ -10,7 +10,7 @@ namespace NzbDrone.Core.Model.Notification
|
|||
public ProgressNotification(string title)
|
||||
{
|
||||
Title = title;
|
||||
CurrentStatus = String.Empty;
|
||||
CurrentMessage = String.Empty;
|
||||
Id = Guid.NewGuid();
|
||||
ProgressMax = 100;
|
||||
ProgressValue = 0;
|
||||
|
@ -33,7 +33,7 @@ namespace NzbDrone.Core.Model.Notification
|
|||
/// Gets or sets the current status of this task. this field could be use to show the currently processing item in a long running task.
|
||||
/// </summary>
|
||||
/// <value>The current status.</value>
|
||||
public String CurrentStatus { get; set; }
|
||||
public String CurrentMessage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the completion status in percent.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue