using System; namespace Abp.Web.Models { /// /// A shortcut for to disable wrapping by default. /// It sets false to and properties. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface | AttributeTargets.Method)] public class DontWrapResultAttribute : WrapResultAttribute { /// /// Initializes a new instance of the class. /// public DontWrapResultAttribute() : base(false, false) { } } }