2022-06-29 19:46:41 -04:00
|
|
|
|
namespace Bit.Core.Entities;
|
2022-08-29 16:06:55 -04:00
|
|
|
|
|
2024-07-03 15:17:02 -04:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
|
2017-07-14 09:05:15 -04:00
|
|
|
|
public interface ITableObject<T> where T : IEquatable<T>
|
|
|
|
|
|
{
|
|
|
|
|
|
T Id { get; set; }
|
|
|
|
|
|
void SetNewId();
|
|
|
|
|
|
}
|