Files
mongodb-generic-repository/CoreUnitTests/Infrastructure/Model/PartitionedTestDocument.cs

10 lines
262 B
C#

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