11 lines
216 B
C#
11 lines
216 B
C#
namespace BotSharp.Plugin.MongoStorage;
|
|
|
|
[BsonIgnoreExtraElements(Inherited = true)]
|
|
public abstract class MongoBase
|
|
{
|
|
[BsonId(IdGenerator = typeof(StringGuidIdGenerator))]
|
|
public string Id { get; set; }
|
|
}
|
|
|
|
|