mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 19:42:58 +00:00
25 lines
482 B
C#
25 lines
482 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)
|
|
{
|
|
|
|
}
|
|
}
|