using System; namespace SK.Framework { /// /// CSDN链接 /// [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)] public class CSDNUrlAttribute : Attribute { public string Url { get; private set; } public CSDNUrlAttribute(string url) { Url = url; } } }