曲线逻辑

This commit is contained in:
hsc
2026-06-26 13:55:37 +08:00
parent 52edf16176
commit 4567f058b5
8 changed files with 484 additions and 237 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Attributes
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public class MonitorableAttribute : Attribute
{
public string? Description { get; set; }
public MonitorableAttribute(string? description = null)
{
Description = description;
}
}
}