sync with ervu develop

This commit is contained in:
kochetkov 2024-11-20 14:26:21 +03:00
parent 367cc17235
commit 189da45a2d
2 changed files with 3 additions and 35 deletions

3
.gitignore vendored
View file

@ -60,8 +60,11 @@ frontend/src/ts/**/*.js.map
frontend/src/ts/**/*.ngsummary.json frontend/src/ts/**/*.ngsummary.json
frontend/src/ts/aot*/ frontend/src/ts/aot*/
frontend/src/ts/generated*/ frontend/src/ts/generated*/
frontend/src/resources/css/*.ngstyle.js
npm-debug.log npm-debug.log
#Sublime project files #Sublime project files
*.sublime-project *.sublime-project
*.sublime-workspace *.sublime-workspace
sync-backend.ps1
sync-frontend.ps1

View file

@ -1,35 +0,0 @@
package dto.jivoprofile;
import ru.cg.webbpm.modules.webkit.annotations.Model;
@Model
public class JivoProfileDto {
public String username;
public String email;
public String phone;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
}