//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI {
///
/// Provides a strongly-typed way to get navigation UI-related properties
///
public interface INavigateUIData {
string Description {
get;
}
///
///
string Name {
get;
}
///
///
string NavigateUrl {
get;
}
///
///
string Value {
get;
}
}
}