new features 04/12/2024

This commit is contained in:
2024-12-04 15:01:24 +07:00
parent a5eb4e9157
commit 33cfd5d363
24 changed files with 947 additions and 135 deletions

View File

@@ -0,0 +1,15 @@
package Webpage;
public class SipSetting {
public String Server;
public int Port;
public String Username;
public String Password;
public SipSetting(String server, int port, String username, String password){
this.Server = server;
this.Port = port;
this.Username = username;
this.Password = password;
}
}