ln.application/IApplicationInterface.cs

20 lines
437 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;
namespace ln.application
{
public interface IApplicationInterface
{
ArgumentContainer Arguments { get; }
HTTPServer HttpServer { get; }
ResourceApplication HTTPApplication { get; }
ServiceContainer ServiceContainer { get; }
}
}