This repository has been archived on 2024-06-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2023-08-10 09:04:36 +02:00

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; }
}