mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
15 lines
314 B
C#
15 lines
314 B
C#
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; }
|
|
}
|
|
}
|