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
10 lines
276 B
C#
10 lines
276 B
C#
using Artemis.Core.Models.Surface;
|
|
using Artemis.UI.Screens.Settings.Tabs.Devices;
|
|
|
|
namespace Artemis.UI.Ninject.Factories
|
|
{
|
|
public interface IDeviceSettingsViewModelFactory : IArtemisUIFactory
|
|
{
|
|
DeviceSettingsViewModel Create(ArtemisDevice device);
|
|
}
|
|
} |