Commit
This commit is contained in:
34
ReallifeGamemode.Server/Report/ReportManage.cs
Normal file
34
ReallifeGamemode.Server/Report/ReportManage.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user