Files
Prowlarr/NzbDrone.Core/Providers/UpdateXemMappingsCommand.cs
T
Mark McDowall f2d030ef27 Xem is used now
2013-07-22 22:50:32 -07:00

14 lines
299 B
C#

using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Providers
{
public class UpdateXemMappingsCommand : ICommand
{
public int? SeriesId { get; private set; }
public UpdateXemMappingsCommand(int? seriesId)
{
SeriesId = seriesId;
}
}
}