mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
22 lines
644 B
C#
22 lines
644 B
C#
using System;
|
|
using Artemis.Core.Models.Profile;
|
|
|
|
namespace Artemis.UI.Shared.Events
|
|
{
|
|
public class ProfileElementEventArgs : EventArgs
|
|
{
|
|
public ProfileElementEventArgs(ProfileElement profileElement)
|
|
{
|
|
ProfileElement = profileElement;
|
|
}
|
|
|
|
public ProfileElementEventArgs(ProfileElement profileElement, ProfileElement previousProfileElement)
|
|
{
|
|
ProfileElement = profileElement;
|
|
PreviousProfileElement = previousProfileElement;
|
|
}
|
|
|
|
public ProfileElement ProfileElement { get; }
|
|
public ProfileElement PreviousProfileElement { get; }
|
|
}
|
|
} |