BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/MongoBase.cs

11 lines
216 B
C#
Raw Normal View History

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))]
public string Id { get; set; }
2023-08-26 04:41:01 +00:00
}
2023-10-23 20:33:24 +00:00