using System; namespace PepperDash.Essentials.Devices.Common.Codec { /// /// Represents a DirectoryEventArgs /// public class DirectoryEventArgs : EventArgs { /// /// Gets or sets the Directory /// public CodecDirectory Directory { get; set; } /// /// Gets or sets the DirectoryIsOnRoot /// public bool DirectoryIsOnRoot { get; set; } } }