19 lines
433 B
C#
19 lines
433 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace 电子展板.Utility.Swagger
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class SwaggerClassCommentAttribute : Attribute
|
|
{
|
|
public string Comment { get; set; }
|
|
public SwaggerClassCommentAttribute(string comment)
|
|
{
|
|
Comment = comment;
|
|
}
|
|
}
|
|
}
|