FromBodyOrDefaultAttribute.cs 348 B

12345678910
  1. using System;
  2. using Microsoft.AspNetCore.Mvc.ModelBinding;
  3. namespace Masuit.Tools.AspNetCore.ModelBinder;
  4. [AttributeUsage(AttributeTargets.Parameter | AttributeTargets.Property)]
  5. public class FromBodyOrDefaultAttribute : Attribute, IBindingSourceMetadata
  6. {
  7. public BindingSource BindingSource => BodyOrDefaultBindingSource.BodyOrDefault;
  8. }