15 lines
318 B
15 lines
318 B
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
|
|
{
|
|
}
|
|
}
|
|
|