Class InboxMessageEntity
Entity that maps to the inbox table.
Inherited Members
Namespace: Chapar.Inbox.EntityFrameworkCore.Stores
Assembly: Chapar.Inbox.EntityFrameworkCore.dll
Syntax
public class InboxMessageEntity
Properties
| Edit this page View SourceConsumerTypeName
The fully‑qualified type name of the consumer that processed the message.
Declaration
public string ConsumerTypeName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Id
Auto‑incremented primary key.
Declaration
public long Id { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
IsProcessed
Indicates if the message has already been fully processed.
Declaration
public bool IsProcessed { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
MessageId
The unique identifier of the consumed message.
Declaration
public string MessageId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ReceivedAt
The timestamp when the message was first received.
Declaration
public DateTime ReceivedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |