1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using OpenMetaverse;
- namespace OpenSim.Framework
- {
- public class LandStatReportItem
- {
- public float LocationX;
- public float LocationY;
- public float LocationZ;
- public string OwnerName;
- public float Score;
- public UUID TaskID;
- public uint TaskLocalID;
- public string TaskName;
- public LandStatReportItem()
- {
- }
- }
- }
|