mirror of
https://github.com/Maschell/JNUSLib.git
synced 2024-11-16 04:59:20 +01:00
19 lines
453 B
Java
19 lines
453 B
Java
|
package de.mas.wiiu.jnus;
|
||
|
|
||
|
import de.mas.wiiu.jnus.entities.Ticket;
|
||
|
import de.mas.wiiu.jnus.implementations.woomy.WoomyInfo;
|
||
|
import de.mas.wiiu.jnus.implementations.wud.parser.WUDInfo;
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
public class NUSTitleConfig {
|
||
|
private String inputPath;
|
||
|
private WUDInfo WUDInfo;
|
||
|
private Ticket ticket;
|
||
|
|
||
|
private int version = Settings.LATEST_TMD_VERSION;
|
||
|
private long titleID = 0x0L;
|
||
|
|
||
|
private WoomyInfo woomyInfo;
|
||
|
}
|