6
2026-01-24 12:49:55 +03:00

20 lines
368 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared._DV.Mail
{
/// <summary>
/// Stores the visuals for mail.
/// </summary>
[Serializable, NetSerializable]
public enum MailVisuals : byte
{
IsLocked,
IsTrash,
IsBroken,
IsFragile,
IsPriority,
IsPriorityInactive,
JobIcon,
}
}