You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* © 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) { |
|
}
|
|
|