1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
using OpenSim.Framework.Interfaces; namespace OpenSim.Region.Environment.Regions { public class RegionSubscription { private readonly IClientAPI m_client; public RegionSubscription(IClientAPI client ) { m_client = client; } public IClientAPI Client { get { return m_client; } } } }