mirror of
https://github.com/bitwarden/server
synced 2026-01-04 17:43:53 +00:00
Split out repositories to Infrastructure.Dapper / EntityFramework (#1759)
This commit is contained in:
10
src/Core/Entities/ITableObject.cs
Normal file
10
src/Core/Entities/ITableObject.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
namespace Bit.Core.Entities
|
||||
{
|
||||
public interface ITableObject<T> where T : IEquatable<T>
|
||||
{
|
||||
T Id { get; set; }
|
||||
void SetNewId();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user