2022-12-11 22:03:54 +01:00

9 lines
215 B
C#

using Connected.Entities;
namespace Connected.ServiceModel.Data;
public abstract record TableEntity<TPrimaryKey, TPartitionKey> : Entity<TPrimaryKey>, ITableEntity<TPrimaryKey>
where TPrimaryKey : notnull
{
}