All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 48s
Deploy Promiscuity Character API / deploy (push) Successful in 59s
Deploy Promiscuity Inventory API / deploy (push) Successful in 46s
Deploy Promiscuity Locations API / deploy (push) Successful in 1m0s
Deploy Promiscuity Mail API / deploy (push) Successful in 1m9s
k8s smoke test / test (push) Successful in 9s
11 lines
247 B
C#
11 lines
247 B
C#
namespace MailApi.Models;
|
|
|
|
public class MailboxResponse
|
|
{
|
|
public string CharacterId { get; set; } = string.Empty;
|
|
|
|
public List<MailMessageResponse> Inbox { get; set; } = [];
|
|
|
|
public List<MailMessageResponse> Sent { get; set; } = [];
|
|
}
|