using System; namespace Bit.Core.Models.Table { public interface ITableObject where T : IEquatable { T Id { get; set; } void SetNewId(); } }