mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
15 lines
352 B
C#
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; }
|
|
} |