mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
Please test everything you can about this and report back if everything still works correctly.
19 lines
400 B
C#
19 lines
400 B
C#
using NzbDrone.Common.Messaging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Events
|
|
{
|
|
public class MovieFileUpdatedEvent : IEvent
|
|
{
|
|
public MovieFile MovieFile { get; private set; }
|
|
|
|
public MovieFileUpdatedEvent(MovieFile movieFile)
|
|
{
|
|
MovieFile = movieFile;
|
|
}
|
|
}
|
|
}
|