16 lines
318 B
16 lines
318 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace AMESCoreStudio.WebApi
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Swagger:隐藏属性
|
||
|
/// </summary>
|
||
|
[AttributeUsage(AttributeTargets.Property)]
|
||
|
public class IgnorePropertyAttribute : Attribute
|
||
|
{
|
||
|
}
|
||
|
}
|