mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 01:43:15 +08:00
11 lines
179 B
C#
11 lines
179 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Table
|
|||
|
|
{
|
|||
|
|
public interface ITableObject<T> where T : IEquatable<T>
|
|||
|
|
{
|
|||
|
|
T Id { get; set; }
|
|||
|
|
void SetNewId();
|
|||
|
|
}
|
|||
|
|
}
|