Skip to content

Commit

Permalink
Fix not commiting the "IdUrlMimeTypeTriple" model.
Browse files Browse the repository at this point in the history
  • Loading branch information
LSmyrnaios committed Dec 19, 2024
1 parent f2dfbba commit 663b8ab
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package eu.openaire.publications_retriever.models;

public class IdUrlMimeTypeTriple {

// Use "public" to avoid the overhead of calling successors, this is a temporal class anyway.
public String id;
public String url;
public String mimeType;

public IdUrlMimeTypeTriple(String id, String url, String mimeType) {
this.id = id;
this.url = url;
this.mimeType = mimeType;
}

}

0 comments on commit 663b8ab

Please sign in to comment.