Add getter for model

This commit is contained in:
0xb00bface 2021-05-08 19:10:21 +02:00
parent aa3f4a1b1f
commit c96138ed6e
1 changed files with 5 additions and 0 deletions

View File

@ -64,4 +64,9 @@ public abstract class AbstractDownload implements Download {
strategy.init(settings);
return strategy;
}
@Override
public Model getModel() {
return model;
}
}