namespace MailApi.Models; public class MailboxResponse { public string CharacterId { get; set; } = string.Empty; public List Inbox { get; set; } = []; public List Sent { get; set; } = []; }