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