Added basic info to get in game for like...August 2016 ;-; It's not much but it's a start
9 lines
233 B
C#
9 lines
233 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace RecRoomArchive.Models.API.Players
|
|
{
|
|
public class BlockDurationDTO
|
|
{
|
|
[JsonPropertyName(name: "BlockedDuration")] public int BlockedDuration { get; set; } = 0;
|
|
}
|
|
} |