Moved auditing interfaces to EnvelopeGenerator.Domain.Interfaces.Auditing. Updated entity classes to reference the new namespace. Added ICreationAuditable and IUpdateAuditable interfaces to improve code organization and clarify auditing responsibilities.
7 lines
142 B
C#
7 lines
142 B
C#
namespace EnvelopeGenerator.Domain.Interfaces.Auditing
|
|
{
|
|
public interface IHasAddedWho
|
|
{
|
|
string AddedWho { get; set; }
|
|
}
|
|
} |