1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-23 02:05:27 +02:00
Sonarr/NzbDrone.Core/Providers/UpdateXemMappingsCommand.cs

14 lines
297 B
C#
Raw Normal View History

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