namespace Prefab.Domain.Common;
///
/// Captures creation metadata for auditable entities.
///
public interface ICreated
{
///
/// Gets the identifier of the user that created the entity.
///
Guid CreatedBy { get; }
///
/// Gets when the entity was created.
///
DateTimeOffset CreatedOn { get; }
}