1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-15 01:25:05 +02:00
Files
Sonarr/NzbDrone.Core/Providers/UpdateXemMappingsCommand.cs

14 lines
297 B
C#
Raw Normal View History

2013-09-12 15:42:01 -07:00
using NzbDrone.Core.Messaging.Commands;
2013-07-22 22:50:32 -07:00
namespace NzbDrone.Core.Providers
{
2013-09-10 23:33:47 -07:00
public class UpdateXemMappingsCommand : Command
2013-07-22 22:50:32 -07:00
{
public int? SeriesId { get; set; }
2013-07-22 22:50:32 -07:00
public UpdateXemMappingsCommand(int? seriesId)
{
SeriesId = seriesId;
}
}
}