mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 18:30:45 +00:00
14 lines
314 B
C#
14 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; }
|
|
}
|
|
}
|