Interface IEntity<T>
Uniquely identifiable entity inside a repository.
Namespace: GlitchedPolygons.RepositoryPattern
Assembly: GlitchedPolygons.RepositoryPattern.dll
Syntax
public interface IEntity<T>
Type Parameters
| Name | Description |
|---|---|
| T |
Properties
| Improve this Doc View SourceId
Gets or sets the entity's unique identifier.
Declaration
T Id { get; set; }
Property Value
| Type | Description |
|---|---|
| T | The entity's unique id. |