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

17 lines
375 B
C#

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; }
}
}