1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/MediaFiles/Commands/CleanMediaFileDb.cs

23 lines
542 B
C#
Raw Normal View History

2013-08-28 03:51:54 +03:00
using System;
using NzbDrone.Common;
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.MediaFiles.Commands
{
public class CleanMediaFileDb : ICommand
{
public String CommandId { get; private set; }
public int SeriesId { get; private set; }
2013-08-28 03:51:54 +03:00
public CleanMediaFileDb()
{
CommandId = HashUtil.GenerateCommandId();
}
public CleanMediaFileDb(int seriesId)
{
2013-08-28 03:51:54 +03:00
CommandId = HashUtil.GenerateCommandId();
SeriesId = seriesId;
}
}
}