Files
App/OwnChar.App.Desktop/Api/Parameters/AppInitParams.cs
2024-05-20 18:50:10 +02:00

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;
}
}