1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
- {
- interface IPersistence
- {
- T Get<T>(Guid storageID);
- T Get<T>();
-
-
-
-
-
-
-
-
- void Put<T>(Guid storageID, T data);
-
-
-
-
-
- void Put<T>(T data);
- }
- }
|