mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 19:42:58 +00:00
32 lines
805 B
C#
32 lines
805 B
C#
using Esiur.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Esiur.Resource.Template;
|
|
public class AttributeTemplate : MemberTemplate
|
|
{
|
|
public PropertyInfo PropertyInfo
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
|
|
public AttributeTemplate(TypeTemplate template, byte index, string name, bool inherited)
|
|
: base(template, index, name, inherited)
|
|
{
|
|
|
|
}
|
|
|
|
public static AttributeTemplate MakeAttributeTemplate(Type type, PropertyInfo pi, byte index = 0, string customName = null, TypeTemplate typeTemplate = null)
|
|
{
|
|
var at = new AttributeTemplate(typeTemplate, index, customName, pi.DeclaringType != type);
|
|
at.PropertyInfo = pi;
|
|
return at;
|
|
}
|
|
}
|