Files
Notes/src/services/meta/attachment_meta.js
2023-06-29 23:32:19 +02:00

17 lines
293 B
JavaScript

class AttachmentMeta {
/** @type {string} */
attachmentId;
/** @type {string} */
title;
/** @type {string} */
role;
/** @type {string} */
mime;
/** @type {int} */
position;
/** @type {string} */
dataFileName;
}
module.exports = AttachmentMeta;