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.
11 lines
192 B
C#
11 lines
192 B
C#
namespace EnvelopeGenerator.Domain.Interfaces.Auditing
|
|
{
|
|
public interface IHasChangedWho
|
|
{
|
|
string
|
|
#if nullable
|
|
?
|
|
#endif
|
|
ChangedWho { get; set; }
|
|
}
|
|
} |