chenxin
2020-12-11 31f0c1761b37dfd47408a93df9ed18468b50ef40
1
2
3
4
5
6
7
8
9
10
11
12
namespace Core.Data
{
    /// <summary>
    /// Interface for data store
    /// </summary>
    public interface IDataStore
    {
        void PreSave();
 
        void PostLoad();
    }
}