using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LiveForum.Code.AttributeExtend; /// /// /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public class ImagesAttribute : Attribute { public string FieldName { get; set; } /// /// /// /// 生成字段名称 // 构造函数,用于传递参数 public ImagesAttribute(string fieldName = "") { this.FieldName = fieldName; } }