mirror of
https://github.com/Radarr/Radarr
synced 2025-02-19 13:00:59 +00:00
14 lines
No EOL
297 B
C#
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;
|
|
}
|
|
}
|
|
} |