live-forum/server/webapi/LiveForum/LiveForum.Code/AttributeExtend/ImagesAttribute.cs
2026-03-24 11:27:37 +08:00

27 lines
578 B
C#

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