mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-13 07:02:34 +00:00
parent
4c8b8d4e4f
commit
7dfe62b96d
51 changed files with 244 additions and 247 deletions
|
|
@ -0,0 +1,23 @@
|
|||
package ee.carlrobert.codegpt.util.file;
|
||||
|
||||
public class FileExtensionLanguageDetails {
|
||||
|
||||
private String extension;
|
||||
private String value;
|
||||
|
||||
public String getExtension() {
|
||||
return extension;
|
||||
}
|
||||
|
||||
public void setExtension(String extension) {
|
||||
this.extension = extension;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue