1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
2024-02-14 23:04:19 +01:00

15 lines
352 B
C#

using Artemis.Core;
namespace Artemis.WebClient.Workshop.Handlers.UploadHandlers;
public class PluginEntrySource : IEntrySource
{
public PluginEntrySource(PluginInfo pluginInfo, string path)
{
PluginInfo = pluginInfo;
Path = path;
}
public PluginInfo PluginInfo { get; set; }
public string Path { get; set; }
}