123456789101112131415161718192021 |
- /*-------------------------------------------------------------------------
- * 功能描述:ICoustomParseStorage
- * 作者:xulisong
- * 创建时间: 2019/7/1 11:12:47
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace FWindSoft.Revit.ExtensibleStorage
- {
- public interface ICoustomStorage
- {
- void SetStorage(object value);
- object GetStorage();
- }
- }
|