ICoustomStorage.cs 559 B

123456789101112131415161718192021
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:ICoustomParseStorage
  3. * 作者:xulisong
  4. * 创建时间: 2019/7/1 11:12:47
  5. * 版本号:v1.0
  6. * -------------------------------------------------------------------------*/
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. namespace FWindSoft.Revit.ExtensibleStorage
  13. {
  14. public interface ICoustomStorage
  15. {
  16. void SetStorage(object value);
  17. object GetStorage();
  18. }
  19. }