SwaggerIgnoreAttribute.cs 240 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.attribute
  5. {
  6. [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
  7. public class SwaggerIgnoreAttribute : Attribute
  8. {
  9. }
  10. }