山东雷驰
 
 
 
 

13 lines
228 B

using System;
namespace Kean.Domain
{
/// <summary>
/// 指示作为输出属性
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public class OutputAttribute : Attribute
{
}
}