2013-08-28 00:51:54 +00:00
|
|
|
using System;
|
|
|
|
using NzbDrone.Common;
|
2013-04-29 00:39:17 +00:00
|
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.DataAugmentation.Scene
|
|
|
|
{
|
|
|
|
public class UpdateSceneMappingCommand : ICommand
|
|
|
|
{
|
2013-08-31 03:08:19 +00:00
|
|
|
public String CommandId { get; private set; }
|
2013-08-28 00:51:54 +00:00
|
|
|
|
|
|
|
public UpdateSceneMappingCommand()
|
|
|
|
{
|
|
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
|
|
}
|
2013-04-29 00:39:17 +00:00
|
|
|
}
|
|
|
|
}
|