namespace Core.Data { /// /// Interface for data store /// public interface IDataStore { void PreSave(); void PostLoad(); } }