namespace Bmp.Core.FFMpeg.CsCorePorts.FFMpegWrap;
///
/// Provides data for the event.
///
public class ResolveFfmpegAssemblyLocationEventArgs : EventArgs
{
///
/// Gets the platform.
///
///
/// The platform.
///
public PlatformID Platform { get; private set; }
///
/// Gets or sets the directory which contains the native Ffmpeg assemblies for the current and architecture.
///
///
/// The ffmpeg directory.
///
public DirectoryInfo FfmpegDirectory { get; set; }
internal ResolveFfmpegAssemblyLocationEventArgs(PlatformID platformId)
{
Platform = platformId;
}
}