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.
Connected.Framework/Connected.Configuration/IConfigurationService.cs

22 lines
406 B

2 years ago
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; }
}