1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-19 13:00:59 +00:00
Radarr/NzbDrone.Core/Providers/UpdateXemMappingsCommand.cs
2013-09-12 15:42:01 -07:00

14 lines
No EOL
297 B
C#

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