Files
mongodb-generic-repository/IntegrationTests/ReadTests.cs
T
2017-08-27 17:35:21 +00:00

20 lines
341 B
C#

using MongoDbGenericRepository.Models;
using NUnit.Framework;
namespace IntegrationTests
{
public class ReadTestsDocument : Document
{
public ReadTestsDocument()
{
Version = 2;
}
public string SomeContent { get; set; }
}
[TestFixture]
public class ReadTests
{
}
}