From 19824afc1c2dc6b225294cf0650ff880ca88f4ed Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 9 Jun 2026 19:07:26 +0200 Subject: [PATCH] Mark PsPdfKitAnnotation as obsolete; remove TemplateType The `PsPdfKitAnnotation` property in the `SignCommand` class has been marked as `[Obsolete]` with a deprecation message suggesting the use of `Signature.Commands.SignCommand` instead. The `TemplateType` property, which returned the `EmailTemplateType.DocumentSigned` value, has been removed from the `SignCommand` class. --- .../Signatures/Commands/SignCommand.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/EnvelopeGenerator.Application/Signatures/Commands/SignCommand.cs b/EnvelopeGenerator.Application/Signatures/Commands/SignCommand.cs index f8e98b45..7b1b93f1 100644 --- a/EnvelopeGenerator.Application/Signatures/Commands/SignCommand.cs +++ b/EnvelopeGenerator.Application/Signatures/Commands/SignCommand.cs @@ -22,11 +22,6 @@ public record SignCommand : IRequest [Obsolete("This notification is deprecated. Use Signature.Commands.SignCommand instead.")] public PsPdfKitAnnotation? PsPdfKitAnnotation { get; init; } - /// - /// Gets the email template type. - /// - public EmailTemplateType TemplateType => EmailTemplateType.DocumentSigned; - /// /// Gets the email address of the receiver. ///