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.
6 lines
140 B
C#
6 lines
140 B
C#
namespace EnvelopeGenerator.Domain.Interfaces.Auditing
|
|
{
|
|
public interface ICreationAuditable : IHasAddedWhen, IHasAddedWho
|
|
{
|
|
}
|
|
} |