mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
24 lines
378 B
Java
24 lines
378 B
Java
package com.bwssystems.HABridge.dao;
|
|
|
|
public class BackupFilename {
|
|
private String filename;
|
|
private String file;
|
|
|
|
public String getFilename() {
|
|
return filename;
|
|
}
|
|
|
|
public void setFilename(String filename) {
|
|
this.filename = filename;
|
|
}
|
|
|
|
public String getFile() {
|
|
return file;
|
|
}
|
|
|
|
public void setFile(String file) {
|
|
this.file = file;
|
|
}
|
|
|
|
}
|