using System; namespace Bit.App.Abstractions { public interface IDataObject where T : IEquatable { T Id { get; } } }