15 lines
330 B
C#
15 lines
330 B
C#
using OwnChar.Plugins;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OwnChar.App.Desktop.Api.Parameters
|
|
{
|
|
public class AppInitParams(IOwnCharApi api) : OwnCharPluginInitParams
|
|
{
|
|
public IOwnCharApi Api { get; set; } = api;
|
|
}
|
|
}
|