All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kz.greetgo.file_storage.impl.FileParams Maven / Gradle / Ivy

package kz.greetgo.file_storage.impl;

import java.util.Date;

class FileParams {
  String id;
  String sha1sum;
  String name;
  Date createdAt;
  String mimeType;

  @Override
  public String toString() {
    return "FileParams{" +
      "id='" + id + '\'' +
      ", name='" + name + '\'' +
      ", createdAt=" + createdAt +
      ", mimeType='" + mimeType + '\'' +
      '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy