2023-09-01 22:33:36 +00:00
|
|
|
namespace BotSharp.Plugin.MongoStorage;
|
2023-08-26 04:41:01 +00:00
|
|
|
|
|
|
|
|
[BsonIgnoreExtraElements(Inherited = true)]
|
2023-10-23 20:33:24 +00:00
|
|
|
public abstract class MongoBase
|
2023-08-26 04:41:01 +00:00
|
|
|
{
|
2023-10-23 20:33:24 +00:00
|
|
|
[BsonId(IdGenerator = typeof(StringGuidIdGenerator))]
|
2023-10-19 22:27:51 +00:00
|
|
|
public string Id { get; set; }
|
2023-08-26 04:41:01 +00:00
|
|
|
}
|
2023-10-23 20:33:24 +00:00
|
|
|
|
|
|
|
|
|