Skip to content

Commit

Permalink
Added additional COMs for poa attachment status (#1140)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuvorovNM authored Jul 4, 2024
1 parent 1fb6b8c commit e76286a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Com/DocflowsV3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public interface ISignatureV3
SignatureVerificationResult VerificationResult { get; }
Timestamp DeliveredAt { get; }
SignaturePowerOfAttorney PowerOfAttorney { get; set; }
PowerOfAttorneyAttachmentStatus PowerOfAttorneyAttachmentStatus { get; set; }
}

[ComVisible(true)]
Expand Down
3 changes: 2 additions & 1 deletion src/Com/PowersOfAttorney.cs
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,8 @@ public enum PowerOfAttorneyValidationStatusNamedId
CanNotBeValidated = 1,
IsValid = 2,
IsNotValid = 3,
ValidationError = 4
ValidationError = 4,
IsNotAttached = 5
}

[ComVisible(true)]
Expand Down
2 changes: 2 additions & 0 deletions src/Proto/Events/DiadocMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Linq;
using System.Runtime.InteropServices;
using Diadoc.Api.Com;
using Diadoc.Api.Proto.Docflow;
using Diadoc.Api.Proto.Documents;
using Diadoc.Api.Proto.OuterDocflows;
using MessageType = Diadoc.Api.Com.MessageType;
Expand Down Expand Up @@ -105,6 +106,7 @@ public interface IEntity
RevocationRequestInfo RevocationRequestInfo { get; }
PowerOfAttorneyInfo PowerOfAttorneyInfo { get; }
MoveDocumentInfo MoveDocumentInfo { get; }
PowerOfAttorneyAttachmentStatus PowerOfAttorneyAttachmentStatus { get; }
}

[ComVisible(true)]
Expand Down

0 comments on commit e76286a

Please sign in to comment.