mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-05 15:02:21 +00: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; }
|
|||
|
}
|
|||
|
}
|