Table of Contents

Struct GuildData

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

Guild data transfer object.

public struct GuildData
Inherited Members

Constructors

GuildData(long, string, string, string, string, string, bool)

Initializes a new instance of the GuildData struct.

public GuildData(long id, string name, string notice, string messageOfTheDay, string blurb = "", string tags = "", bool isRecruiting = false)

Parameters

id long
name string
notice string
messageOfTheDay string
blurb string
tags string
isRecruiting bool

Remarks

The recruitment fields default so that the callers which only care about name, notice and message of the day are unchanged.

Fields

Blurb

Recruitment blurb shown in the directory to non-members.

public readonly string Blurb

Field Value

string

ID

Guild identifier.

public readonly long ID

Field Value

long

IsRecruiting

Whether the guild is listed in the recruitment directory.

public readonly bool IsRecruiting

Field Value

bool

MessageOfTheDay

Message of the day displayed to members on login.

public readonly string MessageOfTheDay

Field Value

string

Name

Guild display name.

public readonly string Name

Field Value

string

Notice

Guild notice text.

public readonly string Notice

Field Value

string

Tags

Comma-separated recruitment tags, lower-cased.

public readonly string Tags

Field Value

string