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
190 B
C#
11 lines
190 B
C#
#if NETFRAMEWORK
|
|
using System;
|
|
#endif
|
|
|
|
namespace EnvelopeGenerator.Domain.Interfaces.Auditing
|
|
{
|
|
public interface IHasChangedWhen
|
|
{
|
|
DateTime? ChangedWhen { get; set; }
|
|
}
|
|
} |