namespace Prefab.Domain.Common; /// /// Interface representation of an entity. All entities should implement this. /// /// The type that will represent the entity's ID field. public interface IEntity { /// /// Gets or sets the ID of the entity. /// T Id { get; set; } }