mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Added a centralised ProfileEditorSurface for communication between VMs Prefixed Surface, Device and Led with Artemis to differentiate them better
15 lines
325 B
C#
15 lines
325 B
C#
using System;
|
|
using Artemis.Core.Models.Surface;
|
|
|
|
namespace Artemis.Core.Events
|
|
{
|
|
public class SurfaceConfigurationEventArgs : EventArgs
|
|
{
|
|
public SurfaceConfigurationEventArgs(ArtemisSurface surface)
|
|
{
|
|
Surface = surface;
|
|
}
|
|
|
|
public ArtemisSurface Surface { get; }
|
|
}
|
|
} |