rename Domain.Interfaces.ISignature as IDocReceiverElement

This commit is contained in:
2026-06-09 22:56:55 +02:00
parent cb6dea319b
commit 9b606a0d3b
4 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ using System.Collections.Generic;
namespace EnvelopeGenerator.Domain.Entities
{
[Table("TBSIG_DOCUMENT_RECEIVER_ELEMENT", Schema = "dbo")]
public class DocReceiverElement : ISignature, IHasReceiver, IHasAddedWhen, IUpdateAuditable
public class DocReceiverElement : IDocReceiverElement, IHasReceiver, IHasAddedWhen, IUpdateAuditable
{
public DocReceiverElement()
{

View File

@@ -1,6 +1,6 @@
namespace EnvelopeGenerator.Domain.Interfaces
{
public interface ISignature
public interface IDocReceiverElement
{
int Page { get; set; }