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; }