namespace ServiceClientGenerator.Endpoints
{
///
/// Object model for Endpoints Parameter's deprecated attribute
/// Used to mark parameter as [Obsolete]
///
public class Deprecated
{
///
/// Deprecation message
///
public string message { get; set; }
///
/// Deprecated since
///
public string since { get; set; }
}
}