FileMetadata.java 281 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 package com.diligrp.assistant.dfs.domain; public class FileMetadata { // MimeType or MediaType private String mimeType; public FileMetadata(String mimeType) { this.mimeType = mimeType; } public String getMimeType() { return mimeType; } }