Introduced interfaces for audit fields (AddedWhen, ChangedWhen, ChangedWho, AddedWho) and updated domain entities to implement them. Adjusted properties for consistency and nullability. Updated MappingProfile to map audit fields between DTOs and entities. Improves auditability and standardization across the domain model.
11 lines
172 B
C#
11 lines
172 B
C#
#if NETFRAMEWORK
|
|
using System;
|
|
#endif
|
|
|
|
namespace EnvelopeGenerator.Domain.Interfaces
|
|
{
|
|
public interface IHasAddedWho
|
|
{
|
|
string AddedWho { get; set; }
|
|
}
|
|
} |