ln.application/IApplicationInterface.cs

25 lines
578 B
C#
Raw Permalink Normal View History

2019-08-03 13:49:06 +02:00
using System;
using System.Collections;
using System.Collections.Generic;
using ln.application.service;
using ln.http.resources;
using ln.http;
using ln.types;
2019-11-04 09:57:20 +01:00
using ln.types.rpc;
using ln.application.slots;
2019-08-03 13:49:06 +02:00
namespace ln.application
{
public interface IApplicationInterface
{
ArgumentContainer Arguments { get; }
HTTPServer HttpServer { get; }
ResourceApplication HTTPApplication { get; }
ServiceContainer ServiceContainer { get; }
2019-11-04 09:57:20 +01:00
RPCContainer RPCContainer { get; }
BinarySlotContainer BinarySlots { get; }
2019-08-03 13:49:06 +02:00
}
}