mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-02 13:14:58 +00:00
16 lines
No EOL
353 B
C#
16 lines
No EOL
353 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.Update.Commands
|
|
{
|
|
public class ApplicationUpdateCommand : ICommand
|
|
{
|
|
public String CommandId { get; private set; }
|
|
|
|
public ApplicationUpdateCommand()
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
}
|
|
}
|
|
} |