TigerEmu/Storage/INhSessionFactory.cs

8 lines
111 B
C#
Raw Normal View History

2023-09-23 12:20:45 +00:00
using NHibernate;
namespace Tiger.Storage;
public interface INhSessionFactory
{
ISession OpenSession();
}