10 lines
262 B
C#
10 lines
262 B
C#
using MongoDbGenericRepository.Models;
|
|
|
|
namespace CoreUnitTests.Infrastructure.Model;
|
|
|
|
public class PartitionedTestDocument : TestDocument, IPartitionedDocument
|
|
{
|
|
/// <inheritdoc />
|
|
public string PartitionKey { get; set; } = "PartitionedTestDocument";
|
|
}
|