mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 19:35:41 +08:00
16 lines
305 B
C#
16 lines
305 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Text;
|
|
using OpenSim.Data.Base;
|
|
|
|
namespace OpenSim.Data.MySQLMapper
|
|
{
|
|
public class MySQLDataReader : OpenSimDataReader
|
|
{
|
|
public MySQLDataReader(IDataReader source) : base(source)
|
|
{
|
|
}
|
|
}
|
|
}
|