mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
443 B
19 lines
443 B
using System;
|
|
using System.Reflection;
|
|
|
|
namespace ZeroLevel.Services.ObjectMapping
|
|
{
|
|
public interface IMemberInfo
|
|
{
|
|
/// <summary>
|
|
/// true - if field, else - property
|
|
/// </summary>
|
|
bool IsField { get; }
|
|
|
|
string Name { get; }
|
|
Type ClrType { get; }
|
|
Action<object, object> Setter { get; }
|
|
Func<object, object> Getter { get; }
|
|
MemberInfo Original { get; }
|
|
}
|
|
} |