sqlsugar/Src/Asp.NetCore2/SqlSugar/Entities/PropertyMetadata.cs

17 lines
375 B
C#
Raw Normal View History

2025-05-11 16:20:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection.Emit;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public class PropertyMetadata
{
public string Name { get; set; }
public Type Type { get; set; }
public List<CustomAttributeBuilder> CustomAttributes { get; set; }
}
}