mirror of
https://github.com/bitwarden/server
synced 2025-12-24 20:23:21 +00:00
8 lines
138 B
C#
8 lines
138 B
C#
namespace Bit.Core.Entities;
|
|
|
|
public interface ITableObject<T> where T : IEquatable<T>
|
|
{
|
|
T Id { get; set; }
|
|
void SetNewId();
|
|
}
|