10 lines
321 B
C#
10 lines
321 B
C#
namespace MagicCarpetContracts.Mapper;
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Field)]
|
|
class PostProcessingAttribute : Attribute
|
|
{
|
|
public string? MappingCallMethodName { get; set; }
|
|
|
|
public PostProcessingType ActionType { get; set; } = PostProcessingType.None;
|
|
}
|