18 lines
464 B
C#
18 lines
464 B
C#
using Pilz.Plugins.Advanced;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OwnChar.Server.Data
|
|
{
|
|
public class ClientServerDataProvider() : PluginFunction(IServerDataProvider.FeatureCode, "ownchar.clientserver"), IServerDataProvider
|
|
{
|
|
protected override object? ExecuteFunction(PluginFunctionParameter? @params)
|
|
{
|
|
return this;
|
|
}
|
|
}
|
|
}
|