001/* 002 * To change this license header, choose License Headers in Project Properties. 003 * To change this template file, choose Tools | Templates 004 * and open the template in the editor. 005 */ 006package org.anarres.qemu.image; 007 008import com.fasterxml.jackson.annotation.JsonProperty; 009import java.io.File; 010 011/** 012 * 013 * @author shevek 014 */ 015public class QEmuImageCheck { 016 017 @JsonProperty("filename") 018 public File filename; 019 @JsonProperty("format") 020 public QEmuImageFormat format; 021 @JsonProperty("image-end-offset") 022 public long imageEndOffset; 023 @JsonProperty("total-clusters") 024 public int totalClusters; 025 @JsonProperty("check-errors") 026 public int checkErrors; 027}