dev.struchkov.godfather.main.domain.content.Attachment Maven / Gradle / Ivy
package dev.struchkov.godfather.main.domain.content;
public abstract class Attachment {
protected final String type;
protected Attachment(String type) {
this.type = type;
}
public String getType() {
return type;
}
}