Files
ServiceDashBored/Endpoint/IHttpEndpointConfiguration.cs
T
2025-10-11 09:44:08 -04:00

19 lines
396 B
C#

using System;
using System.Configuration;
using System.Xml.Serialization;
namespace Endpoint
{
public interface IHttpEndpointConfiguration : IServiceEndpointConfiguration
{
/// <summary>
/// URI of the service
/// </summary>
[XmlIgnore]
Uri Uri { get; }
[ConfigurationProperty("uri", DefaultValue = "", IsKey = false, IsRequired = false)]
string UriString { get; set; }
}
}