MongoDbRepository rewrite

This commit is contained in:
alexandre-spieser
2017-08-27 01:54:45 +00:00
parent 6deb1c5ea9
commit ca3c208cca
122 changed files with 124390 additions and 35176 deletions
@@ -0,0 +1,12 @@
using System;
namespace MongoDbGenericRepository.Models
{
public interface IDocument
{
DateTime AddedAtUtc { get; set; }
Guid Id { get; set; }
string PartitionKey { get; set; }
int Version { get; set; }
}
}