mirror of
https://github.com/edgegamers/Jailbreak.git
synced 2025-12-05 20:40:29 -08:00
12 lines
201 B
C#
12 lines
201 B
C#
namespace Jailbreak.Warden.Queue;
|
|
|
|
public class QueueState
|
|
{
|
|
|
|
/// <summary>
|
|
/// Whether or not this player is currently in the queue
|
|
/// </summary>
|
|
public bool InQueue { get; set; } = false;
|
|
|
|
}
|