namespace EnvelopeGenerator.Web.Models.Annotation; public interface IAnnotation { string Name { get; } double? Width { get; } double? Height { get; } double Left { get; } double Top { get; } Color? BackgroundColor { get; } Color? BorderColor { get; } string? BorderStyle { get; } int? BorderWidth { get; } }