mirror of
https://github.com/servalproject/serval-dna.git
synced 2025-01-25 21:59:19 +00:00
15 lines
204 B
Java
15 lines
204 B
Java
package org.servalproject.servald;
|
|
|
|
class ServalDResult
|
|
{
|
|
public int status;
|
|
public String[] outv;
|
|
|
|
public ServalDResult(int status, String[] outv)
|
|
{
|
|
this.status = status;
|
|
this.outv = outv;
|
|
}
|
|
|
|
}
|