package com.mzl.flower.dto.response.upload; 
 | 
  
 | 
public class UploadResultDTO { 
 | 
    private Long size; 
 | 
    private String type; 
 | 
    private String url; 
 | 
    private String width; 
 | 
    private String height; 
 | 
    private String 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; 
 | 
    } 
 | 
  
 | 
    public String getUrl() { 
 | 
        return url; 
 | 
    } 
 | 
  
 | 
    public void setUrl(String url) { 
 | 
        this.url = url; 
 | 
    } 
 | 
  
 | 
    public String getWidth() { 
 | 
        return width; 
 | 
    } 
 | 
  
 | 
    public void setWidth(String width) { 
 | 
        this.width = width; 
 | 
    } 
 | 
  
 | 
    public String getHeight() { 
 | 
        return height; 
 | 
    } 
 | 
  
 | 
    public void setHeight(String height) { 
 | 
        this.height = height; 
 | 
    } 
 | 
  
 | 
    public String getName() { 
 | 
        return name; 
 | 
    } 
 | 
  
 | 
    public void setName(String name) { 
 | 
        this.name = name; 
 | 
    } 
 | 
} 
 |