// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNet.Mvc { /// /// Represents an entity which has binding information for a model. /// public interface IModelPropertyBindingInfo { /// /// Comma separated set of properties which are to be excluded during model binding. /// string Exclude { get; } /// /// Comma separated set of properties which are to be included during model binding. /// string Include { get; } } }