Return all fetched messages headers in JSON.

This is in preperation of BIMI-Selectors #1394
This commit is contained in:
the-djmaze 2024-01-21 23:35:32 +01:00
parent 55a5fb491a
commit 8292c47f7c
7 changed files with 135 additions and 69 deletions

13
dev/Model/MimeHeader.js Normal file
View file

@ -0,0 +1,13 @@
import ko from 'ko';
import { AbstractModel } from 'Knoin/AbstractModel';
export class MimeHeaderModel extends AbstractModel
{
constructor() {
super();
this.name = '';
this.value = '';
this.parameters = ko.observableArray();
}
}