using System; namespace eDriven.Core.Reflection { /// /// Sets the specified value on a given object /// public interface ISetterProxy { /// /// Member type, which will be evaluated for assigning the right interpolator /// Type MemberType { get; set; } /// /// Sets a member value /// /// void SetValue(object value); } }