9 lines
215 B
C#
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
|
|
{
|
|
}
|