IMongo.cs 213 B

1234567891011
  1. using System.ComponentModel;
  2. namespace Common.Base
  3. {
  4. /// <summary>
  5. /// 需要序列化的成员继承此接口
  6. /// </summary>
  7. public interface IMongo: ISupportInitialize
  8. {
  9. }
  10. }