From f84edd7f5471af392b4e33ded7b95a2c6c669925 Mon Sep 17 00:00:00 2001 From: MarcUs7i <96580944+MarcUs7i@users.noreply.github.com> Date: Thu, 19 Dec 2024 16:36:04 +0100 Subject: [PATCH] Completed Parcel --- SantaClausInc/Core/Model.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SantaClausInc/Core/Model.cs b/SantaClausInc/Core/Model.cs index d8856b2..c275167 100644 --- a/SantaClausInc/Core/Model.cs +++ b/SantaClausInc/Core/Model.cs @@ -22,5 +22,5 @@ public record Parcel(ChildInfo ForChild, string Description) /// the child for which it is meant and the content /// /// A string representation of the present - public override string ToString() => string.Empty; // TODO + public override string ToString() => $"{Description} for {ForChild.Name} (age {ForChild.Age})"; }