Table of Contents

Class BridgeBanEntry

Namespace
FishMMO.DiscordBot.Data
Assembly
FishMMO-DiscordBot.dll

Represents a ban preventing a game character or account from using the Discord chat bridge.

public class BridgeBanEntry
Inheritance
BridgeBanEntry
Inherited Members

Properties

BannedBy

Discord user who issued the ban.

public string BannedBy { get; set; }

Property Value

string

CreatedAtUtc

When the ban was created.

public DateTime CreatedAtUtc { get; set; }

Property Value

DateTime

IsAccountBan

Whether this bans an account name (true) or character name (false).

public bool IsAccountBan { get; set; }

Property Value

bool

Name

The banned identifier (character name or account name).

public string Name { get; set; }

Property Value

string

Reason

Reason for the ban.

public string Reason { get; set; }

Property Value

string