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