/* © SRSoftware 2024 */ package de.srsoftware.cal.api; import java.net.URL; /** * an attachment for appointments * @param url the URL of the attached document * @param mime the mime type of the attached document */ public record Attachment(URL url, String mime) { }