20 lines
368 B
C#
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,
|
|
}
|
|
}
|