namespace EnvelopeGenerator.Application.Common.Dto; /// /// /// public record AnnotationCreateDto { /// /// /// public int ElementId { get; init; } /// /// /// public string Name { get; init; } = null!; /// /// /// public string Value { get; init; } = null!; /// /// /// public string Type { get; init; } = null!; /// /// /// public double? X { get; init; } /// /// /// public double? Y { get; init; } /// /// /// public double? Width { get; init; } /// /// /// public double? Height { get; init; } } /// /// /// public record AnnotationDto : AnnotationCreateDto { /// /// /// public long Id { get; init; } /// /// /// public DateTime AddedWhen { get; init; } /// /// /// public DateTime? ChangedWhen { get; init; } /// /// /// public string? ChangedWho { get; init; } }