10 lines
230 B
C#
10 lines
230 B
C#
|
|
namespace LANCommander.SDK.Rpc.Server;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// This is the base for the app hub interface
|
||
|
|
/// It should probably be left blank unless there's global functionality
|
||
|
|
/// </summary>
|
||
|
|
public partial interface IRpcHub
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|