16 lines
397 B
C#
16 lines
397 B
C#
using GerstITS.Web.Rest.WebClients;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace GerstITS.Examples.WebClients.Examples.Api.Configurations;
|
|
|
|
internal class ExampleApiClientConfiguration : RestWebServiceConfigurationBase
|
|
{
|
|
#region Constructors
|
|
|
|
public ExampleApiClientConfiguration(IConfiguration configuration)
|
|
: base(configuration)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
} |