using Connected.Entities.Consistency; namespace Connected.ServiceModel.Data; public interface ITableEntity : IConsistentEntity where TPrimaryKey : notnull where TPartitionKey : notnull { TPartitionKey PartitionKey { get; init; } }