package com.se.simu.domain.dto; @SuppressWarnings("ALL") public class GeFile { String name; Long size; String type; public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getSize() { return size; } public void setSize(Long size) { this.size = size; } public String getType() { return type; } public void setType(String type) { this.type = type; } }