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