9 lines
196 B
C#
9 lines
196 B
C#
using OwnChar.Plugins;
|
|
|
|
namespace OwnChar.App.Desktop.Api.Parameters;
|
|
|
|
public class AppInitParams(IOwnCharApi api) : OwnCharPluginInitParams
|
|
{
|
|
public IOwnCharApi Api { get; set; } = api;
|
|
}
|