Files
adas-core/adas-core.Domain/Models/SystemAlerts/Queue.cs
T

12 lines
374 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>
/// <!-- aidoc:v1 sig=e234fc6 -->
public class Queue
{
public string? Name { get; set; }
public ulong Messages { get; set; }
public ulong Consumers { get; set; }
}