12 lines
219 B
C#
12 lines
219 B
C#
namespace Lookup.Database;
|
|
|
|
/// <summary>
|
|
/// Common interface for database entities
|
|
/// </summary>
|
|
public interface IEntity
|
|
{
|
|
/// <summary>
|
|
/// Id of the database entity
|
|
/// </summary>
|
|
int Id { get; set; }
|
|
} |