mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added ProgressMessaging through nlog
This commit is contained in:
parent
3c632743a1
commit
780e374122
9 changed files with 128 additions and 12 deletions
14
NzbDrone.Core/ProgressMessaging/ProgressMessage.cs
Normal file
14
NzbDrone.Core/ProgressMessaging/ProgressMessage.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.ProgressMessaging
|
||||
{
|
||||
public class ProgressMessage
|
||||
{
|
||||
public DateTime Time { get; set; }
|
||||
public String CommandId { get; set; }
|
||||
public String Message { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue