7 lines
223 B
C#
7 lines
223 B
C#
|
namespace DD.Persistence.Client.Clients.Mapping.Abstractions;
|
|||
|
internal interface IMapperStorage
|
|||
|
{
|
|||
|
TimestampedSetMapper GetMapper<T>(Guid idDiscriminator);
|
|||
|
TimestampedSetMapper? GetMapper(Guid idDiscriminator);
|
|||
|
}
|