mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-31 05:14:51 +00:00
21 lines
448 B
C#
21 lines
448 B
C#
|
|
|
|
using System;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Represents a DirectoryEventArgs
|
|
/// </summary>
|
|
public class DirectoryEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the Directory
|
|
/// </summary>
|
|
public CodecDirectory Directory { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the DirectoryIsOnRoot
|
|
/// </summary>
|
|
public bool DirectoryIsOnRoot { get; set; }
|
|
}
|
|
} |