MongoModel.cs 376 B

12345678910111213141516
  1. using MongoDB.Bson;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ant.Service.Mongodb.Model
  8. {
  9. public abstract class MongoModel
  10. {
  11. public ObjectId id { get; set; }
  12. public BsonDateTime created_at { get; set; }
  13. public BsonDateTime updated_at { get; set; }
  14. }
  15. }