mirror of
https://github.com/Xcreen/RestSMS.git
synced 2026-04-18 06:07:40 -04:00
Rewrite: SMSResponse
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
package net.xcreen.restsms.server;
|
||||
|
||||
public class SMSResponse {
|
||||
|
||||
public boolean success;
|
||||
public String message;
|
||||
|
||||
public SMSResponse(boolean success, String message){
|
||||
this.success = success;
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public SMSResponse(){
|
||||
this.success = false;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package net.xcreen.restsms.server
|
||||
|
||||
class SMSResponse(var success: Boolean, var message: String?) {}
|
||||
Reference in New Issue
Block a user