blob: 7c118e1eedba5b967fcb7cc14e47be2df0ffafbc (
plain)
1
2
3
4
5
6
7
8
9
|
package de.uvok.tuxguitar;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Song {
public int strings;
public Measure[] measures;
}
|