You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/NzbDrone.Core/Providers/UpdateXemMappingsCommand.cs

17 lines
365 B

using System;
using NzbDrone.Common;
11 years ago
using NzbDrone.Core.Messaging;
using NzbDrone.Core.Messaging.Commands;
11 years ago
namespace NzbDrone.Core.Providers
{
11 years ago
public class UpdateXemMappingsCommand : Command
11 years ago
{
public int? SeriesId { get; set; }
11 years ago
public UpdateXemMappingsCommand(int? seriesId)
{
SeriesId = seriesId;
}
}
}