diff --git a/EnvelopeGenerator.ReceiverUI/Models/AnnotationDto.cs b/EnvelopeGenerator.ReceiverUI/Models/AnnotationDto.cs
index 642cc6a9..fcc48e9b 100644
--- a/EnvelopeGenerator.ReceiverUI/Models/AnnotationDto.cs
+++ b/EnvelopeGenerator.ReceiverUI/Models/AnnotationDto.cs
@@ -19,11 +19,11 @@ public record AnnotationDto
public long Id { get; init; }
/// 1-based page number within the document.
- public int? Page { get; init; }
+ public int Page { get; init; }
/// Horizontal position in hundredths of an inch from the left edge of the page.
- public double? X { get; init; }
+ public double X { get; init; }
/// Vertical position in hundredths of an inch from the top edge of the page.
- public double? Y { get; init; }
+ public double Y { get; init; }
}