Class ServerEvent
- Namespace
- RustPlusApi.Fcm.Data.Events
- Assembly
- RustPlusApi.Fcm.dll
Describes a Rust game server received in a server-pairing FCM notification.
public sealed record ServerEvent : IEquatable<ServerEvent>
- Inheritance
-
ServerEvent
- Implements
- Inherited Members
Properties
Desc
Optional server description.
public string? Desc { get; init; }
Property Value
Id
The server's unique Rust+ ID.
public Guid Id { get; init; }
Property Value
Img
Optional URL to a server banner image.
public string? Img { get; init; }
Property Value
Ip
IP address or hostname of the Rust+ companion port.
public string Ip { get; init; }
Property Value
Logo
Optional URL to the server's logo image.
public string? Logo { get; init; }
Property Value
Name
Display name of the server.
public string Name { get; init; }
Property Value
Port
Rust+ companion port number.
public int Port { get; init; }
Property Value
Url
Optional URL to the server's website.
public string? Url { get; init; }