//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.Services.Discovery {
using System;
using System.Xml.Serialization;
///
///
/// [To be supplied.]
///
public sealed class ExcludePathInfo {
private string path = null;
///
///
/// [To be supplied.]
///
public ExcludePathInfo() {
}
///
///
/// [To be supplied.]
///
public ExcludePathInfo(string path) {
this.path = path;
}
///
///
/// [To be supplied.]
///
[XmlAttribute("path")]
public string Path {
get {
return path;
}
set {
path = value;
}
}
}
}