+testausgaben
This commit is contained in:
@@ -9,18 +9,22 @@ namespace ReallifeGamemode.Server.Report
|
||||
private String user;
|
||||
private String admin;
|
||||
private String reportText;
|
||||
private Boolean assigned;
|
||||
|
||||
public ReportManage (String nUser, string nReportText)
|
||||
{
|
||||
this.user = nUser;
|
||||
this.admin = "N/A";
|
||||
this.assigned = false;
|
||||
this.reportText = nReportText;
|
||||
}
|
||||
|
||||
public void setAdmin(String nAdmin)
|
||||
public void assign(String nAdmin)
|
||||
{
|
||||
this.assigned = true;
|
||||
this.admin = nAdmin;
|
||||
}
|
||||
|
||||
public String getAdmin()
|
||||
{
|
||||
return this.admin;
|
||||
|
||||
Reference in New Issue
Block a user