using System.Collections.Generic;
namespace Microsoft.Extensions.Logging.Log4Net.AspNetCore.Entities
{
///
/// Class to store information of a log4net xml config file node.
///
public class NodeInfo
{
///
/// Gets or sets the x path to find the node to override.
///
///
/// The x path.
///
public string XPath { get; set; }
///
/// Gets or sets the content of the node.
///
///
/// The content of the node.
///
public string NodeContent { get; set; }
///
/// Gets or sets the attributes.
///
///
/// The attributes.
///
public Dictionary Attributes { get; set; }
}
}