You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
406 B
22 lines
406 B
using Connected.Configuration.Authentication;
|
|
using Connected.Configuration.Endpoints;
|
|
|
|
namespace Connected.Configuration;
|
|
|
|
public enum ProcessType
|
|
{
|
|
FrontEnd = 1,
|
|
BackEnd = 2,
|
|
Service = 3
|
|
}
|
|
|
|
public interface IConfigurationService
|
|
{
|
|
IEndpointConfiguration Endpoint { get; }
|
|
|
|
IAuthenticationConfiguration Authentication { get; }
|
|
IStorageConfiguration Storage { get; }
|
|
|
|
ProcessType Type { get; }
|
|
}
|