Added ProgressMessaging through nlog

This commit is contained in:
Mark McDowall 2013-08-30 09:18:12 -07:00
commit 780e374122
9 changed files with 128 additions and 12 deletions

View 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; }
}
}