mirror of https://github.com/Radarr/Radarr
18 lines
436 B
C#
18 lines
436 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public class UpdateXemMappingsCommand : ICommand
|
|
{
|
|
public String CommandId { get; private set; }
|
|
public int? SeriesId { get; set; }
|
|
|
|
public UpdateXemMappingsCommand(int? seriesId)
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
SeriesId = seriesId;
|
|
}
|
|
}
|
|
} |