namespace EnvelopeGenerator.Application.Common.Dto; /// /// /// public record AnnotationDto { /// /// /// public long Id { get; init; } /// /// /// public int ElementId { get; init; } /// /// /// public string Name { get; init; } = null!; /// /// /// public string Value { get; init; } = null!; /// /// /// public DateTime AddedWhen { get; init; } /// /// /// public DateTime? ChangedWhen { get; init; } /// /// /// public string? ChangedWho { get; init; } }