Initial implementation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace Lookup.Database;
|
||||
|
||||
/// <summary>
|
||||
/// Common interface for database entities
|
||||
/// </summary>
|
||||
public interface IEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// Id of the database entity
|
||||
/// </summary>
|
||||
int Id { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user