wabbajack/Wabbajack.CacheServer/DTOs/MongoDoc.cs

15 lines
280 B
C#
Raw Normal View History

2019-12-29 22:57:01 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MongoDB.Bson;
namespace Wabbajack.CacheServer.DTOs
{
public class MongoDoc
{
public ObjectId _id { get; set; } = ObjectId.Empty;
}
}