1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-15 07:22:35 +01:00
Radarr/NzbDrone.Core/Update/Commands/ApplicationUpdateCommand.cs

16 lines
353 B
C#
Raw Normal View History

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