mirror of
https://github.com/Prominence/grails-translations-plugin.git
synced 2026-01-09 19:06:41 +03:00
12 lines
205 B
Groovy
12 lines
205 B
Groovy
package by.prominence.translations
|
|
|
|
class Bundle {
|
|
|
|
String name
|
|
List<File> propertiesList = new ArrayList<>()
|
|
|
|
public void addPropertyFile(File file) {
|
|
propertiesList.add(file)
|
|
}
|
|
}
|