11 lines
284 B
C#
11 lines
284 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._Sunrise.PlayerCache;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class PlayerCacheData
|
|
{
|
|
public string? GhostTheme { get; set; }
|
|
public string? Pet { get; set; }
|
|
public bool? EmoteVisibility { get; set; }
|
|
}
|