mirror of
https://github.com/recroom2016/OpenRec.git
synced 2026-04-22 21:25:51 +00:00
12 lines
269 B
C#
12 lines
269 B
C#
using System;
|
|
|
|
namespace api
|
|
{
|
|
public class ModerationBlockDetails
|
|
{
|
|
public int ReportCategory { get; set; }
|
|
public int Duration { get; set; }
|
|
public long GameSessionId { get; set; }
|
|
public string Message { get; set; }
|
|
}
|
|
} |