mirror of https://github.com/abpframework/abp
parent
e2a334f37b
commit
0aa89831d5
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace Volo.Abp.EventBus.Distributed
|
||||
{
|
||||
public class EtoMappingDictionaryItem
|
||||
{
|
||||
public Type EtoType { get; }
|
||||
|
||||
public Type ObjectMappingContextType { get; }
|
||||
|
||||
public EtoMappingDictionaryItem(Type etoType, Type objectMappingContextType = null)
|
||||
{
|
||||
EtoType = etoType;
|
||||
ObjectMappingContextType = objectMappingContextType;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue