Completed Parcel

This commit is contained in:
MarcUs7i 2024-12-19 16:36:04 +01:00
parent d3e489b99c
commit f84edd7f54

View file

@ -22,5 +22,5 @@ public record Parcel(ChildInfo ForChild, string Description)
/// the child for which it is meant and the content
/// </summary>
/// <returns>A string representation of the present</returns>
public override string ToString() => string.Empty; // TODO
public override string ToString() => $"{Description} for {ForChild.Name} (age {ForChild.Age})";
}