Lidarr/src/NzbDrone.Core/CustomFormats/Events/CustomFormatAddedEvent.cs

15 lines
325 B
C#

using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.CustomFormats.Events
{
public class CustomFormatAddedEvent : IEvent
{
public CustomFormatAddedEvent(CustomFormat format)
{
CustomFormat = format;
}
public CustomFormat CustomFormat { get; private set; }
}
}