ln.application/IApplicationInterface.cs

25 lines
578 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using ln.application.service;
using ln.http.resources;
using ln.http;
using ln.types;
using ln.types.rpc;
using ln.application.slots;
namespace ln.application
{
public interface IApplicationInterface
{
ArgumentContainer Arguments { get; }
HTTPServer HttpServer { get; }
ResourceApplication HTTPApplication { get; }
ServiceContainer ServiceContainer { get; }
RPCContainer RPCContainer { get; }
BinarySlotContainer BinarySlots { get; }
}
}