// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Reflection; using Microsoft.AspNet.Mvc.Abstractions; namespace Microsoft.AspNet.Mvc.Controllers { /// /// A descriptor for model bound properties of a controller. /// public class ControllerBoundPropertyDescriptor : ParameterDescriptor { /// /// Gets or sets the for this property. /// public PropertyInfo PropertyInfo { get; set; } } }