From 8897ea101e9ec7d1936bc1dbe7535ac6ba7a0db7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20=C5=A0t=C3=A1gl?= Date: Wed, 8 Jan 2025 06:04:33 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c983e90..dfdd5a0 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Sometimes you might want to exclude certain fields & properties from cloning: private class TestPropsWithIgnored { public int A { get; set; } = 10; - [DeepCloneIgnore] // <-- decorate such members with [DeepCloneIgnore] + [FastClonerIgnore] // <-- decorate such members with [FastClonerIgnore] public string B { get; set; } = "My string"; }