mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
14 lines
328 B
C#
14 lines
328 B
C#
using Artemis.Core.Models.Profile.Colors;
|
|
using Artemis.UI.Shared.Screens.GradientEditor;
|
|
|
|
namespace Artemis.UI.Shared.Ninject.Factories
|
|
{
|
|
public interface IVmFactory
|
|
{
|
|
}
|
|
|
|
public interface IGradientEditorVmFactory : IVmFactory
|
|
{
|
|
GradientEditorViewModel Create(ColorGradient colorGradient);
|
|
}
|
|
} |