Files
2026-06-26 10:29:23 +02:00

11 lines
340 B
C#

namespace adas_core.Domain.Models.SystemAlerts;
/// <summary>
/// Represents a queue, a data structure that follows the First In, First Out (FIFO) principle for managing elements.
/// </summary>
public class Queue
{
public string? Name { get; set; }
public ulong Messages { get; set; }
public ulong Consumers { get; set; }
}