From 55849be3b2db8ff6d2b3fd7977b582dcf64ec17c Mon Sep 17 00:00:00 2001 From: tacosontitan Date: Fri, 29 Mar 2024 21:46:09 -0500 Subject: [PATCH] Updated readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2074540..b5811e8 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ public int Id { get; set; } Each provider does it a little bit differently, and each provider has its own set of attributes. This can lead to a lot of code duplication, and a lot of confusion when you're trying to figure out how to serialize a type. The idea behind Pasper is to simplify this: ```csharp -[Serialized("id")] +[SerializedMember(nameof(Id))] public int Id { get; set; } ```