1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00
Files
Radarr/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;
}
}
}