1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-28 08:12:22 -05:00
bitwarden/src/Core/Entities/ITableObject.cs
2022-08-29 16:06:55 -04:00

8 lines
138 B
C#

namespace Bit.Core.Entities;
public interface ITableObject<T> where T : IEquatable<T>
{
T Id { get; set; }
void SetNewId();
}