mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 15:25:47 +08:00
13 lines
348 B
C#
13 lines
348 B
C#
using System.Data;
|
|
using TribalMedia.Framework.Data;
|
|
|
|
namespace OpenSim.Framework.Data
|
|
{
|
|
public abstract class OpenSimTableMapper<TRowMapper, TPrimaryKey> : BaseTableMapper<TRowMapper, TPrimaryKey>
|
|
{
|
|
public OpenSimTableMapper(BaseDatabaseConnector database, string tableName) : base(database, tableName)
|
|
{
|
|
}
|
|
}
|
|
}
|