mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 21:01:39 +03:00
10 lines
239 B
C#
10 lines
239 B
C#
namespace MicroIoc
|
|
{
|
|
public abstract class InjectedMemberBase
|
|
{
|
|
public string MemberName { get; set; }
|
|
public object MemberValue { get; set; }
|
|
|
|
public abstract string DeriveFullName<T>();
|
|
}
|
|
} |