23 lines
382 B
C#
23 lines
382 B
C#
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;
|
|
}
|
|
}
|
|
} |