mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
22 lines
557 B
C#
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;
|
|
}
|
|
}
|
|
} |