mirror of
https://github.com/Radarr/Radarr
synced 2025-02-19 13:00:59 +00:00
17 lines
No EOL
365 B
C#
17 lines
No EOL
365 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Messaging;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public class UpdateXemMappingsCommand : Command
|
|
{
|
|
public int? SeriesId { get; set; }
|
|
|
|
public UpdateXemMappingsCommand(int? seriesId)
|
|
{
|
|
SeriesId = seriesId;
|
|
}
|
|
}
|
|
} |