mirror of
https://dev.azure.com/tstanciu94/Tuitio/_git/Tuitio
synced 2025-03-28 23:52:20 +02:00
13 lines
258 B
C#
13 lines
258 B
C#
namespace IdentityServer.Wrapper.Models
|
|
{
|
|
internal class ServiceConfiguration
|
|
{
|
|
public string BaseAddress { get; }
|
|
|
|
public ServiceConfiguration(string baseAddress)
|
|
{
|
|
BaseAddress = baseAddress;
|
|
}
|
|
}
|
|
}
|