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