mirror of
https://github.com/Readarr/Readarr
synced 2025-12-20 15:23:55 +01: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;
|
|
}
|
|
}
|
|
} |