mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-10-06 19:55:49 +08:00
13 lines
241 B
JavaScript
13 lines
241 B
JavaScript
import ko from 'ko';
|
|
|
|
import { AbstractModel } from 'Knoin/AbstractModel';
|
|
|
|
export class MimeHeaderModel extends AbstractModel
|
|
{
|
|
constructor() {
|
|
super();
|
|
this.name = '';
|
|
this.value = '';
|
|
this.parameters = ko.observableArray();
|
|
}
|
|
}
|