1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.UI.Shared/Events/DataModelSelectedEventArgs.cs
Robert 5675d1895b Conditions - Removed old systems
Data bindings - Removed old systems
Data bindings - Implemented node system
2021-08-18 23:47:14 +02:00

22 lines
557 B
C#

using System;
using Artemis.Core;
using Artemis.UI.Shared.Controls;
namespace Artemis.UI.Shared
{
/// <summary>
/// Provides data about selection events raised by <see cref="DataModelPicker" />
/// </summary>
public class DataModelSelectedEventArgs : EventArgs
{
/// <summary>
/// Gets the data model path that was selected
/// </summary>
public DataModelPath? Path { get; }
internal DataModelSelectedEventArgs(DataModelPath? path)
{
Path = path;
}
}
}