Sonarr/NzbDrone.Core/Update/Commands/ApplicationUpdateCommand.cs

16 lines
353 B
C#
Raw Normal View History

2013-08-28 00:51:54 +00:00
using System;
using NzbDrone.Common;
using NzbDrone.Common.Messaging;
2013-05-16 00:16:06 +00:00
namespace NzbDrone.Core.Update.Commands
{
2013-05-16 00:16:21 +00:00
public class ApplicationUpdateCommand : ICommand
2013-05-16 00:16:06 +00:00
{
public String CommandId { get; private set; }
2013-08-28 00:51:54 +00:00
public ApplicationUpdateCommand()
{
CommandId = HashUtil.GenerateCommandId();
}
2013-05-16 00:16:06 +00:00
}
}