Interface IWorldStatusEntity
Interface for a world status entry entity.
Namespace: Fibula.Data.Entities.Contracts.Abstractions
Assembly: Fibula.Data.Entities.Contracts.dll
Syntax
public interface IWorldStatusEntity : IEntity
Properties
| Improve this Doc View SourceLastUpdated
Gets the last time that this entry was updated.
Declaration
DateTimeOffset LastUpdated { get; }
Property Value
Type | Description |
---|---|
System.DateTimeOffset |
PlayersOnline
Gets the number of players online in this world.
Declaration
ushort PlayersOnline { get; }
Property Value
Type | Description |
---|---|
System.UInt16 |
RecordOnline
Gets the peak number of players ever observed in this world.
Declaration
ushort RecordOnline { get; }
Property Value
Type | Description |
---|---|
System.UInt16 |
World
Gets the name of the world this entry is for.
Declaration
string World { get; }
Property Value
Type | Description |
---|---|
System.String |