This commit is contained in:
2019-09-02 19:32:05 +02:00
parent e9eac2e94b
commit f29bd12757
14 changed files with 410 additions and 8 deletions

View File

@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Report
{
class ReportManage
{
private String user;
private String admin;
private String reportText;
public ReportManage (String nUser, string nReportText)
{
this.user = nUser;
this.admin = "N/A";
this.reportText = nReportText;
}
public void setAdmin(String nAdmin)
{
this.admin = nAdmin;
}
public String getUser()
{
return this.user;
}
public String getReporttext()
{
return this.reportText;
}
}
}