Rob / Entities /Interfaces /IDbEntity.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
109 Bytes
namespace Entities.Interfaces
{
public interface IDbEntity
{
int Id { get; set; }
}
}