A free and open-source web framework that enables developers to create web apps using C# and HTML, developed by Microsoft.
you should learn about c# types and nullability.
ReadFromJson can return a null (no content), so it return Nullable<Timestamp>. This means you must cast the return value to non-null to pass as a value type rather than a nullable object.
(Timestamp ReturnTimestamp, var error) = app.ApplicationServices.GetService<TimestampService>().AddTimestamp((Timestamp) timestamp);