12 lines
190 B
C#
12 lines
190 B
C#
|
|
namespace Endpoint
|
|
{
|
|
/// <summary>
|
|
/// Describes a service endpoint's configuration
|
|
/// </summary>
|
|
public interface IServiceEndpointConfiguration
|
|
{
|
|
string Name { get; set; }
|
|
}
|
|
}
|