Table of Contents

Struct EmailQueueData

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

Data transfer object for a pending email in the outbound queue.

public struct EmailQueueData
Inherited Members

Constructors

EmailQueueData(long, string, string, string, string, DateTime, int, string?, DateTime?)

public EmailQueueData(long id, string recipientEmail, string recipientUsername, string subject, string body, DateTime createdAt, int attempts, string? claimedBy, DateTime? claimedAt)

Parameters

id long
recipientEmail string
recipientUsername string
subject string
body string
createdAt DateTime
attempts int
claimedBy string
claimedAt DateTime?

Fields

Attempts

public readonly int Attempts

Field Value

int

Body

public readonly string Body

Field Value

string

ClaimedAt

public readonly DateTime? ClaimedAt

Field Value

DateTime?

ClaimedBy

public readonly string? ClaimedBy

Field Value

string

CreatedAt

public readonly DateTime CreatedAt

Field Value

DateTime

ID

public readonly long ID

Field Value

long

RecipientEmail

public readonly string RecipientEmail

Field Value

string

RecipientUsername

public readonly string RecipientUsername

Field Value

string

Subject

public readonly string Subject

Field Value

string