EntityDB.cs 213 B

12345678910111213141516
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace Model
  3. {
  4. [BsonIgnoreExtraElements]
  5. public class EntityDB: Entity
  6. {
  7. protected EntityDB()
  8. {
  9. }
  10. protected EntityDB(long id): base(id)
  11. {
  12. }
  13. }
  14. }