File size: 159 Bytes
5c05829
 
 
 
 
 
1
2
3
4
5
6
7
export class EmailJSResponseStatus {
    constructor(_status = 0, _text = 'Network Error') {
        this.status = _status;
        this.text = _text;
    }
}