1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using OpenMetaverse;
- namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
- {
- public interface ISocialEntity
- {
- UUID GlobalID { get; }
- string Name { get; }
- bool IsUser { get; }
- }
- }
|