442569b339
fixed previous alias displayed on welcome announcement fixed duplicate events on profile page tweaked display of non event meta on mobile you can view other's stats from the webconsole penalties show privileged client's level don't have commands to chat history
22 lines
614 B
C#
22 lines
614 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibrary.Dtos
|
|
{
|
|
public class PenaltyInfo
|
|
{
|
|
public string OffenderName { get; set; }
|
|
public int OffenderId { get; set; }
|
|
public string PunisherName { get; set; }
|
|
public int PunisherId { get; set; }
|
|
public string PunisherLevel { get; set; }
|
|
public string Offense { get; set; }
|
|
public string Type { get; set; }
|
|
public string TimePunished { get; set; }
|
|
public string TimeRemaining { get; set; }
|
|
}
|
|
}
|