import { SecureNoteType } from "../../enums/secureNoteType"; import { SecureNoteApi } from "../api/secureNoteApi"; export class SecureNoteData { type: SecureNoteType; constructor(data?: SecureNoteApi) { if (data == null) { return; } this.type = data.type; } }