Files
HTCloud/HT.Cloud.Code/Attribute/ServiceDescriptionAttribute.cs

23 lines
382 B
C#
Raw Normal View History

2023-03-03 16:07:50 +08:00
using System;
namespace HT.Cloud.Code
{
[AttributeUsage(AttributeTargets.Class, Inherited = true)]
public class ServiceDescriptionAttribute : Attribute
{
public string ClassDescription
{
get;
set;
}
private ServiceDescriptionAttribute()
{
}
public ServiceDescriptionAttribute(string classDescription)
{
ClassDescription = classDescription;
}
}
}