18 lines
353 B
C#
18 lines
353 B
C#
using System;
|
|
|
|
namespace Sufi.Demo.PeopleDirectory.Domain.Common
|
|
{
|
|
public interface IAuditableEntity<TId> : IAuditableEntity, IEntity<TId>
|
|
{
|
|
|
|
}
|
|
|
|
public interface IAuditableEntity : IEntity
|
|
{
|
|
string? CreatedBy { get; set; }
|
|
DateTime CreatedOn { get; set; }
|
|
string? LastModifiedBy { get; set; }
|
|
DateTime? LastModifiedOn { get; set; }
|
|
}
|
|
}
|