13 lines
257 B
C#
13 lines
257 B
C#
namespace MiaoYu.Core.Swagger.Attributes;
|
|
|
|
/// <summary>
|
|
/// 在 swagger 表单中 隐藏字段
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
|
|
public class InSwaggerFormHideAttribute : Attribute
|
|
{
|
|
|
|
|
|
|
|
}
|