mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
505 B
C#
19 lines
505 B
C#
using System;
|
|
|
|
namespace Artemis.Core;
|
|
|
|
/// <summary>
|
|
/// Provides data for profile configuration events.
|
|
/// </summary>
|
|
public class ProfileConfigurationEventArgs : EventArgs
|
|
{
|
|
internal ProfileConfigurationEventArgs(ProfileConfiguration profileConfiguration)
|
|
{
|
|
ProfileConfiguration = profileConfiguration;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the profile configuration this event is related to
|
|
/// </summary>
|
|
public ProfileConfiguration ProfileConfiguration { get; }
|
|
} |