ISEOShare.cs 204 B

12345678910111213
  1. using MongoDB.Bson;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace CZFW.MDB
  6. {
  7. public interface ISEOShare
  8. {
  9. BsonDocument GetSEOShare(string path);
  10. }
  11. }