mirror of
https://github.com/bitwarden/server.git
synced 2025-04-28 08:12:22 -05: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();
|
|
}
|