Table of Contents

Struct GuildLogData

Namespace
FishMMO.Database.Data
Assembly
FishMMO-DB.dll

One guild activity log row.

public struct GuildLogData
Inherited Members

Constructors

GuildLogData(long, long, GuildLogEventType, long, long, string, DateTime)

Initializes a new guild log row.

public GuildLogData(long id, long guildID, GuildLogEventType eventType, long actorCharacterID, long targetCharacterID, string detail, DateTime timeCreated)

Parameters

id long

Primary key, or zero when not yet written.

guildID long

The guild the event belongs to.

eventType GuildLogEventType

What happened.

actorCharacterID long

The acting character, or zero.

targetCharacterID long

The subject character, or zero.

detail string

Optional short detail.

timeCreated DateTime

When the event happened (UTC).

Fields

ActorCharacterID

The character who performed the action, or zero.

public readonly long ActorCharacterID

Field Value

long

Detail

Optional short detail, such as a rank name. May be empty.

public readonly string Detail

Field Value

string

EventType

What happened.

public readonly GuildLogEventType EventType

Field Value

GuildLogEventType

GuildID

The guild the event belongs to.

public readonly long GuildID

Field Value

long

ID

Primary key. Zero for a row that has not been written yet.

public readonly long ID

Field Value

long

TargetCharacterID

The character the action was performed on, or zero.

public readonly long TargetCharacterID

Field Value

long

TimeCreated

When the event happened (UTC).

public readonly DateTime TimeCreated

Field Value

DateTime