mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
27 lines
532 B
C#
27 lines
532 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(ResourceTemplate template, byte index, string name)
|
|
: base(template, MemberType.Attribute, index, name)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|