Skip to content

Commit

Permalink
TRS.TMS12.LoadedPlugin、TRS.TMS12.PluginListをclassに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
automatic9045 committed Nov 3, 2021
1 parent e7ec98e commit bd5ab7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MS-12/Loader/LoadedPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace TRS.TMS12
{
public struct LoadedPlugin<IPlugin>
public class LoadedPlugin<IPlugin>
{
public string Path { get; private set; }
public IPlugin Plugin { get; private set; }
Expand Down
2 changes: 1 addition & 1 deletion MS-12/Loader/PluginList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace TRS.TMS12
{
public struct PluginList
public class PluginList
{
public List<LoadedPlugin<IPlugin>> Plugins { get; private set; }
public List<LoadedPlugin<ITicketPlugin>> TicketPlugins { get; private set; }
Expand Down

0 comments on commit bd5ab7c

Please sign in to comment.