mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Modules - Added IsPropertyInUse API UI - Properly dispose data model paths wherever they are used
20 lines
504 B
C#
20 lines
504 B
C#
using System;
|
|
|
|
namespace Artemis.Core
|
|
{
|
|
/// <summary>
|
|
/// Provides data about data model path related events
|
|
/// </summary>
|
|
public class DataModelPathEventArgs : EventArgs
|
|
{
|
|
internal DataModelPathEventArgs(DataModelPath dataModelPath)
|
|
{
|
|
DataModelPath = dataModelPath;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the data model path this event is related to
|
|
/// </summary>
|
|
public DataModelPath DataModelPath { get; }
|
|
}
|
|
} |